youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit db0a8ad97993cb3f0c398d3a5dc55389565e0ffd
parent 1c29e81e620241b9013b23e7acd9d6ab06587fb1
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed, 14 Oct 2015 21:11:06 +0600

[test_InfoExtractor] Add test for unquoted attribute

Diffstat:
Mtest/test_InfoExtractor.py | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/test/test_InfoExtractor.py b/test/test_InfoExtractor.py @@ -36,11 +36,13 @@ class TestInfoExtractor(unittest.TestCase): <meta content="Some video's description " name="og:description"/> <meta property='og:image' content='http://domain.com/pic.jpg?key1=val1&amp;key2=val2'/> <meta content='application/x-shockwave-flash' property='og:video:type'> + <meta content='Foo' property=og:foobar> ''' 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) + self.assertEqual(ie._og_search_property('foobar', html), 'Foo') def test_html_search_meta(self): ie = self.ie