diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-10-14 20:58:52 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-10-14 20:58:52 +0600 |
commit | 1c29e81e620241b9013b23e7acd9d6ab06587fb1 (patch) | |
tree | a9a34789e326418fd973e635549622c9c77627cc /test | |
parent | 7a6d76a64d8a89a08bb79791506fc18b993c4580 (diff) |
[test_InfoExtractor] Add test for 7a6d76a64d8a89a08bb79791506fc18b993c4580
Diffstat (limited to 'test')
-rw-r--r-- | test/test_InfoExtractor.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_InfoExtractor.py b/test/test_InfoExtractor.py index be8d12997..4ce5b5a35 100644 --- a/test/test_InfoExtractor.py +++ b/test/test_InfoExtractor.py @@ -35,10 +35,12 @@ class TestInfoExtractor(unittest.TestCase): <meta name="og:title" content='Foo'/> <meta content="Some video's description " name="og:description"/> <meta property='og:image' content='http://domain.com/pic.jpg?key1=val1&key2=val2'/> + <meta content='application/x-shockwave-flash' property='og:video:type'> ''' self.assertEqual(ie._og_search_title(html), 'Foo') self.assertEqual(ie._og_search_description(html), 'Some video\'s description ') self.assertEqual(ie._og_search_thumbnail(html), 'http://domain.com/pic.jpg?key1=val1&key2=val2') + self.assertEqual(ie._og_search_video_url(html, default=None), None) def test_html_search_meta(self): ie = self.ie |