mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-23 03:02:50 +01:00
45 lines
1.3 KiB
Python
45 lines
1.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License version 2 as
|
|
# published by the Free Software Foundation.
|
|
|
|
from gallery_dl.extractor import foolfuuka
|
|
|
|
|
|
__tests__ = (
|
|
{
|
|
"#url" : "https://archived.moe/gd/thread/309639/",
|
|
"#category": ("foolfuuka", "archivedmoe", "thread"),
|
|
"#class" : foolfuuka.FoolfuukaThreadExtractor,
|
|
"#sha1_url" : "fdd533840e2d535abd162c02d6dfadbc12e2dcd8",
|
|
"#sha1_content": "c27e2a7be3bc989b5dd859f7789cc854db3f5573",
|
|
},
|
|
|
|
{
|
|
"#url" : "https://archived.moe/a/thread/159767162/",
|
|
"#category": ("foolfuuka", "archivedmoe", "thread"),
|
|
"#class" : foolfuuka.FoolfuukaThreadExtractor,
|
|
"#sha1_url": "ffec05a1a1b906b5ca85992513671c9155ee9e87",
|
|
},
|
|
|
|
{
|
|
"#url" : "https://archived.moe/gd/",
|
|
"#category": ("foolfuuka", "archivedmoe", "board"),
|
|
"#class" : foolfuuka.FoolfuukaBoardExtractor,
|
|
},
|
|
|
|
{
|
|
"#url" : "https://archived.moe/_/search/text/test/",
|
|
"#category": ("foolfuuka", "archivedmoe", "search"),
|
|
"#class" : foolfuuka.FoolfuukaSearchExtractor,
|
|
},
|
|
|
|
{
|
|
"#url" : "https://archived.moe/gd/gallery/2",
|
|
"#category": ("foolfuuka", "archivedmoe", "gallery"),
|
|
"#class" : foolfuuka.FoolfuukaGalleryExtractor,
|
|
},
|
|
|
|
)
|