Files
CouchPotatoServer/couchpotato/_tests/scanner.py
T
2011-12-21 17:31:34 +01:00

23 lines
382 B
Python

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)