[noop] add 'noop' extractor

This commit is contained in:
Mike Fährmann
2024-10-28 15:49:39 +01:00
parent 76f855d87b
commit 5de8576ff6
4 changed files with 57 additions and 0 deletions

28
test/results/noop.py Normal file
View File

@@ -0,0 +1,28 @@
# -*- 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 noop
__tests__ = (
{
"#url" : "noop",
"#class" : noop.NoopExtractor,
"#urls" : (),
"#count" : 0,
},
{
"#url" : "nop",
"#class" : noop.NoopExtractor,
},
{
"#url" : "NOOP",
"#class" : noop.NoopExtractor,
},
)