about summary refs log tree commit diff
path: root/test/test_download.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-03-13 16:40:53 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-03-13 16:40:53 +0100
commit84769e708c81a1600ff24e7140c889fefc4aa6ef (patch)
treed3088902c608bc329c722fa8565d58d82343499a /test/test_download.py
parent9d2ecdbc712d4e500dd0207041392b143082ad00 (diff)
downloadyoutube-dl-84769e708c81a1600ff24e7140c889fefc4aa6ef.tar.gz
youtube-dl-84769e708c81a1600ff24e7140c889fefc4aa6ef.tar.xz
youtube-dl-84769e708c81a1600ff24e7140c889fefc4aa6ef.zip
[ninegag] Fix extraction
Diffstat (limited to 'test/test_download.py')
-rw-r--r--test/test_download.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test_download.py b/test/test_download.py
index bbbb6b78a..c241d9324 100644
--- a/test/test_download.py
+++ b/test/test_download.py
@@ -144,6 +144,10 @@ def generator(test_case):
                         self.assertTrue(
                             isinstance(got, compat_str) and match_rex.match(got),
                             u'field %s (value: %r) should match %r' % (info_field, got, match_str))
+                    elif isinstance(expected, type):
+                        got = info_dict.get(info_field)
+                        self.assertTrue(isinstance(got, expected),
+                            u'Expected type %r, but got value %r of type %r' % (expected, got, type(got)))
                     else:
                         if isinstance(expected, compat_str) and expected.startswith('md5:'):
                             got = 'md5:' + md5(info_dict.get(info_field))