5 changed files with 21 additions and 65 deletions
@ -1,22 +0,0 @@ |
|||
import unittest |
|||
|
|||
class RenamingTests(unittest.TestCase): |
|||
""" |
|||
Test renaming of just downloaded movies |
|||
""" |
|||
|
|||
fixtures = [ |
|||
( |
|||
'/path/to/movies/Moviename.2009.720p.bluray-groupname', |
|||
'Unicodestring' |
|||
), |
|||
] |
|||
|
|||
def testUnicode(self, name, result): |
|||
pass |
|||
|
|||
def tests(self): |
|||
for (name, result) in self.fixtures: |
|||
self.testUnicode(name, result) |
|||
|
|||
|
@ -1,22 +0,0 @@ |
|||
import unittest |
|||
|
|||
class UnicodeTests(unittest.TestCase): |
|||
""" |
|||
Test unicode pathname conversion |
|||
""" |
|||
|
|||
fixtures = [ |
|||
( |
|||
'Unicodstring', |
|||
u'Unicodestring' |
|||
), |
|||
] |
|||
|
|||
def testUnicode(self, name, result): |
|||
pass |
|||
|
|||
def tests(self): |
|||
for (name, result) in self.fixtures: |
|||
self.testUnicode(name, result) |
|||
|
|||
|
Loading…
Reference in new issue