Merge branch 'refs/heads/develop' into desktop

This commit is contained in:
Ruud
2012-02-11 23:33:14 +01:00
4 changed files with 0 additions and 44 deletions
View File
-22
View File
@@ -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)
-22
View File
@@ -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)