about summary refs log tree commit diff
path: root/test/helper.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-01-09 23:59:18 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2015-01-09 23:59:18 +0100
commitdd622d7c4ec15aec6ea5d66ed88a236147373e95 (patch)
tree22b2ca7b1fbcdd96e0e3ed70b1aa5cf15c42d9b9 /test/helper.py
parentb8da6b9fc6b05dff5dfbe98e20546b7e5e0ab170 (diff)
downloadyoutube-dl-dd622d7c4ec15aec6ea5d66ed88a236147373e95.tar.gz
youtube-dl-dd622d7c4ec15aec6ea5d66ed88a236147373e95.tar.xz
youtube-dl-dd622d7c4ec15aec6ea5d66ed88a236147373e95.zip
[netzkino] Add new extractor (Fixes #4669)
Diffstat (limited to 'test/helper.py')
-rw-r--r--test/helper.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/helper.py b/test/helper.py
index 77225e4f7..c416f388c 100644
--- a/test/helper.py
+++ b/test/helper.py
@@ -110,6 +110,20 @@ def expect_info_dict(self, got_dict, expected_dict):
         else:
             if isinstance(expected, compat_str) and expected.startswith('md5:'):
                 got = 'md5:' + md5(got_dict.get(info_field))
+            elif isinstance(expected, compat_str) and expected.startswith('mincount:'):
+                got = got_dict.get(info_field)
+                self.assertTrue(
+                    isinstance(got, list),
+                    'Expected field %s to be a list, but it is of type %s' % (
+                        info_field, type(got).__name__))
+                expected_num = int(expected.partition(':')[2])
+                assertGreaterEqual(
+                    self, len(got), expected_num,
+                    'Expected %d items in field %s, but only got %d' % (
+                        expected_num, info_field, len(got)
+                    )
+                )
+                continue
             else:
                 got = got_dict.get(info_field)
             self.assertEqual(expected, got,