diff options
Diffstat (limited to 'test/test_playlists.py')
| -rw-r--r-- | test/test_playlists.py | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/test/test_playlists.py b/test/test_playlists.py index b3bfbd923..5eeba091e 100644 --- a/test/test_playlists.py +++ b/test/test_playlists.py @@ -32,6 +32,7 @@ from youtube_dl.extractor import (      IviCompilationIE,      ImdbListIE,      KhanAcademyIE, +    EveryonesMixtapeIE,  ) @@ -210,6 +211,15 @@ class TestPlaylists(unittest.TestCase):          self.assertEqual(result['description'], 'How have humans protected their secret messages through history? What has changed today?')          self.assertTrue(len(result['entries']) >= 3) +    def test_EveryonesMixtape(self): +        dl = FakeYDL() +        ie = EveryonesMixtapeIE(dl) +        result = ie.extract('http://everyonesmixtape.com/#/mix/m7m0jJAbMQi') +        self.assertIsPlaylist(result) +        self.assertEqual(result['id'], 'm7m0jJAbMQi') +        self.assertEqual(result['title'], 'Driving') +        self.assertEqual(len(result['entries']), 24) +  if __name__ == '__main__':      unittest.main() | 
