aboutsummaryrefslogtreecommitdiffstats
path: root/test/testdata/yt_dlp_plugins/extractor/ignore.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/testdata/yt_dlp_plugins/extractor/ignore.py')
-rw-r--r--test/testdata/yt_dlp_plugins/extractor/ignore.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/testdata/yt_dlp_plugins/extractor/ignore.py b/test/testdata/yt_dlp_plugins/extractor/ignore.py
new file mode 100644
index 0000000..0f7eaa4
--- /dev/null
+++ b/test/testdata/yt_dlp_plugins/extractor/ignore.py
@@ -0,0 +1,12 @@
+from hypervideo_dl.extractor.common import InfoExtractor
+
+
+class IgnoreNotInAllPluginIE(InfoExtractor):
+ pass
+
+
+class InAllPluginIE(InfoExtractor):
+ pass
+
+
+__all__ = ['InAllPluginIE']