Merge branch 'refs/heads/develop' into desktop
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user