small fixes

This commit is contained in:
Mike Fährmann
2017-06-22 17:03:34 +02:00
parent ccb7973b57
commit e1d82af5e0
4 changed files with 16 additions and 10 deletions

View File

@@ -15,10 +15,15 @@ class JaiminisboxChapterExtractor(foolslide.FoolslideChapterExtractor):
"""Extractor for manga-chapters from jaiminisbox.com"""
category = "jaiminisbox"
pattern = foolslide.chapter_pattern(r"(?:www\.)?jaiminisbox\.com/reader")
test = [("https://jaiminisbox.com/reader/read/uratarou/en/0/1/", {
"url": "f021de7f31ee3a3f688fdf3e8183aef4226c2b50",
"keyword": "d187df3e3b6dbe09ec163626f6fd7c57133ab163",
})]
test = [
("https://jaiminisbox.com/reader/read/uratarou/en/0/1/", {
"url": "f021de7f31ee3a3f688fdf3e8183aef4226c2b50",
"keyword": "d187df3e3b6dbe09ec163626f6fd7c57133ab163",
}),
("https://jaiminisbox.com/reader/read/dr-stone/en/0/16/", {
"keyword": "6b6896d98a2eb8f38e9b7f5242a547b826da2599",
}),
]
class JaiminisboxMangaExtractor(foolslide.FoolslideMangaExtractor):