ff21df596b
Maintaining the descriptions creates quite a bit of overhead (finding them, copying them, checking if they are still correct) for a minimal user benefit. PS: Viewing this diff should be easier in a difftool that shows changes in a line, for example kdiff3.
21 lines
615 B
Python
21 lines
615 B
Python
# -*- coding: iso-8859-1 -*-
|
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
|
from unittest import TestCase
|
|
from dosagelib import scraper, util
|
|
try:
|
|
text_type = unicode
|
|
except NameError:
|
|
text_type = str
|
|
|
|
|
|
class TestComicNames(TestCase):
|
|
|
|
def test_names(self):
|
|
for scraperclass in scraper.get_scraperclasses():
|
|
name = scraperclass.getName()
|
|
self.assertTrue(name.count('/') <= 1, name)
|
|
if '/' in name:
|
|
comicname = name.split('/')[1]
|
|
else:
|
|
comicname = name
|
|
self.assertEqual(util.asciify(comicname), comicname)
|