summaryrefslogtreecommitdiff
path: root/tests/test_lightweight_cleaning.py
diff options
context:
space:
mode:
authorVincent Deffontaines2025-03-18 22:11:27 +0100
committerjvoisin2025-03-18 22:20:17 +0100
commit2b58eece509c22a692f4de2512ec41c00e1d2728 (patch)
treec74baaf6570b8721eff0ef8e8ccbf7d07fc9e05b /tests/test_lightweight_cleaning.py
parent29f404bce34706f1902659a8aa713d9c2570cc60 (diff)
Add webp support
Diffstat (limited to '')
-rw-r--r--tests/test_lightweight_cleaning.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test_lightweight_cleaning.py b/tests/test_lightweight_cleaning.py
index ce7e48c..9b33df4 100644
--- a/tests/test_lightweight_cleaning.py
+++ b/tests/test_lightweight_cleaning.py
@@ -24,6 +24,11 @@ class TestLightWeightCleaning(unittest.TestCase):
24 'meta': {'Comment': 'Created with GIMP'}, 24 'meta': {'Comment': 'Created with GIMP'},
25 'expected_meta': {}, 25 'expected_meta': {},
26 }, { 26 }, {
27 'name': 'webp',
28 'parser': images.WEBPParser,
29 'meta': {'Warning': '[minor] Improper EXIF header'},
30 'expected_meta': {},
31 }, {
27 'name': 'torrent', 32 'name': 'torrent',
28 'parser': torrent.TorrentParser, 33 'parser': torrent.TorrentParser,
29 'meta': {'created by': b'mktorrent 1.0'}, 34 'meta': {'created by': b'mktorrent 1.0'},