2016-03-07 00:08:57 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-04-12 23:32:15 +00:00
|
|
|
# Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs
|
2014-01-05 15:50:57 +00:00
|
|
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
2016-04-12 23:32:15 +00:00
|
|
|
# Copyright (C) 2015-2016 Tobias Gruetzmacher
|
2016-03-07 00:08:57 +00:00
|
|
|
|
2016-04-12 23:32:15 +00:00
|
|
|
from __future__ import absolute_import, division, print_function
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
from dosagelib import scraper
|
2012-12-12 16:41:29 +00:00
|
|
|
|
|
|
|
|
2016-03-07 00:08:57 +00:00
|
|
|
class TestComicNames(object):
|
2012-12-12 16:41:29 +00:00
|
|
|
|
|
|
|
def test_names(self):
|
2016-04-13 20:05:44 +00:00
|
|
|
for scraperobj in scraper.get_scrapers():
|
|
|
|
name = scraperobj.name
|
2016-03-07 00:08:57 +00:00
|
|
|
assert name.count('/') <= 1
|
2012-12-12 16:41:29 +00:00
|
|
|
if '/' in name:
|
|
|
|
comicname = name.split('/')[1]
|
|
|
|
else:
|
|
|
|
comicname = name
|
2016-04-12 23:32:15 +00:00
|
|
|
assert re.sub("[^0-9a-zA-Z_]", "", comicname) == comicname
|