diff options
Diffstat (limited to 'test/test_playlists.py')
| -rw-r--r-- | test/test_playlists.py | 11 | 
1 files changed, 11 insertions, 0 deletions
| 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() | 
