Browse Source

Cleanup

pull/84/head
Ruud 13 years ago
parent
commit
7470e3dacd
  1. 0
      couchpotato/_tests/__init__.py
  2. 22
      couchpotato/_tests/renamer.py
  3. 22
      couchpotato/_tests/scanner.py
  4. 0
      couchpotato/api.py

0
couchpotato/_tests/__init__.py

22
couchpotato/_tests/renamer.py

@ -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
couchpotato/_tests/scanner.py

@ -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)

0
couchpotato/api/__init__.py → couchpotato/api.py

Loading…
Cancel
Save