diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/test_download.py | 2 | ||||
-rw-r--r-- | test/tests.json | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/test/test_download.py b/test/test_download.py index 577bcdbf2..84b3204fe 100644 --- a/test/test_download.py +++ b/test/test_download.py @@ -129,7 +129,7 @@ def generator(test_case): if isinstance(value, compat_str) and value.startswith('md5:'): self.assertEqual(value, 'md5:' + md5(info_dict.get(info_field))) else: - self.assertEqual(value, info_dict.get(info_field)) + self.assertEqual(value, info_dict.get(info_field), u'invalid value for field ' + info_field) # If checkable fields are missing from the test case, print the info_dict test_info_dict = dict((key, value if not isinstance(value, compat_str) or len(value) < 250 else 'md5:' + md5(value)) diff --git a/test/tests.json b/test/tests.json index 3e0db297d..b112e6318 100644 --- a/test/tests.json +++ b/test/tests.json @@ -630,5 +630,15 @@ "title": "E3 2013: Debut Trailer" }, "skip": "Requires rtmpdump" + }, + { + "name": "Statigram", + "url": "http://statigr.am/p/484091715184808010_284179915", + "file": "484091715184808010_284179915.mp4", + "md5": "deda4ff333abe2e118740321e992605b", + "info_dict": { + "uploader": "videoseconds", + "title": "Instagram photo by @videoseconds (Videos)" + } } ] |