diff options
| author | rzhxeo <rzhxeot7z81b4700@mailcatch.com> | 2013-11-18 00:27:06 +0100 | 
|---|---|---|
| committer | rzhxeo <rzhxeot7z81b4700@mailcatch.com> | 2013-11-18 00:27:06 +0100 | 
| commit | 2b35c9ef742bf261078ea10c6c0bba848db1a0df (patch) | |
| tree | fe80c838c7529c8cab6f1b44d730a2849cd68c48 /test/test_YoutubeDL.py | |
| parent | 4894fe8c5baec8b1f21ac6fdebe08175abc7f094 (diff) | |
| parent | 73c566695fac926e7e9e6922fe4e6d82c64a1850 (diff) | |
Merge branch 'master' into rtmpdump
Conflicts:
	youtube_dl/FileDownloader.py
Merge
Diffstat (limited to 'test/test_YoutubeDL.py')
| -rw-r--r-- | test/test_YoutubeDL.py | 20 | 
1 files changed, 16 insertions, 4 deletions
| diff --git a/test/test_YoutubeDL.py b/test/test_YoutubeDL.py index f8cd1bdce..58cf9c313 100644 --- a/test/test_YoutubeDL.py +++ b/test/test_YoutubeDL.py @@ -62,10 +62,10 @@ class TestFormatSelection(unittest.TestCase):      def test_format_limit(self):          formats = [ -            {u'format_id': u'meh'}, -            {u'format_id': u'good'}, -            {u'format_id': u'great'}, -            {u'format_id': u'excellent'}, +            {u'format_id': u'meh', u'url': u'http://example.com/meh'}, +            {u'format_id': u'good', u'url': u'http://example.com/good'}, +            {u'format_id': u'great', u'url': u'http://example.com/great'}, +            {u'format_id': u'excellent', u'url': u'http://example.com/exc'},          ]          info_dict = {              u'formats': formats, u'extractor': u'test', 'id': 'testvid'} @@ -128,6 +128,18 @@ class TestFormatSelection(unittest.TestCase):          downloaded = ydl.downloaded_info_dicts[0]          self.assertEqual(downloaded['format_id'], u'35') +    def test_add_extra_info(self): +        test_dict = { +            'extractor': 'Foo', +        } +        extra_info = { +            'extractor': 'Bar', +            'playlist': 'funny videos', +        } +        YDL.add_extra_info(test_dict, extra_info) +        self.assertEqual(test_dict['extractor'], 'Foo') +        self.assertEqual(test_dict['playlist'], 'funny videos') +  if __name__ == '__main__':      unittest.main() | 
