From 99877772d08285b1b2743427ddd20440f4f4ded2 Mon Sep 17 00:00:00 2001 From: Philipp Hagemeister Date: Mon, 3 Feb 2014 15:19:40 +0100 Subject: [generic] Add support for multiple brightcove URLs (Fixes #2283) --- test/test_playlists.py | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'test') diff --git a/test/test_playlists.py b/test/test_playlists.py index b3ce6f71e..fda2e0112 100644 --- a/test/test_playlists.py +++ b/test/test_playlists.py @@ -34,6 +34,7 @@ from youtube_dl.extractor import ( KhanAcademyIE, EveryonesMixtapeIE, RutubeChannelIE, + GenericIE, ) @@ -229,6 +230,16 @@ class TestPlaylists(unittest.TestCase): self.assertEqual(result['id'], '1409') self.assertTrue(len(result['entries']) >= 34) + def test_multiple_brightcove_videos(self): + # https://github.com/rg3/youtube-dl/issues/2283 + dl = FakeYDL() + ie = GenericIE(dl) + result = ie.extract('http://www.newyorker.com/online/blogs/newsdesk/2014/01/always-never-nuclear-command-and-control.html') + self.assertIsPlaylist(result) + self.assertEqual(result['id'], 'always-never-nuclear-command-and-control') + self.assertEqual(result['title'], 'Always/Never: A Little-Seen Movie About Nuclear Command and Control : The New Yorker') + self.assertEqual(len(result['entries']), 3) + if __name__ == '__main__': unittest.main() -- cgit v1.2.3