aboutsummaryrefslogtreecommitdiff
path: root/test/test_youtube_lists.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-04-27 20:26:42 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-04-27 20:26:42 +0200
commit81df121dd3497a9a00fc76a58d667b5afef3b8d1 (patch)
treee3fa1ce940594d86ed83a10ac70862ae77759619 /test/test_youtube_lists.py
parent50f6412eb86dfd215e1be8de12207e1cf055be23 (diff)
parentbf50b0383e4d6728bbbf1d0ee70cf586a90efb40 (diff)
Merge branch 'master' of github.com:rg3/youtube-dl
Diffstat (limited to 'test/test_youtube_lists.py')
-rw-r--r--test/test_youtube_lists.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/test_youtube_lists.py b/test/test_youtube_lists.py
index c7f00af32..b11e6ccaa 100644
--- a/test/test_youtube_lists.py
+++ b/test/test_youtube_lists.py
@@ -71,6 +71,13 @@ class TestYoutubeLists(unittest.TestCase):
ytie_results = [YoutubeIE()._extract_id(url['url']) for url in result['entries']]
self.assertFalse('pElCt5oNDuI' in ytie_results)
self.assertFalse('KdPEApIVdWM' in ytie_results)
+
+ def test_youtube_playlist_empty(self):
+ dl = FakeDownloader()
+ ie = YoutubePlaylistIE(dl)
+ result = ie.extract('https://www.youtube.com/playlist?list=PLtPgu7CB4gbZDA7i_euNxn75ISqxwZPYx')[0]
+ self.assertIsPlaylist(result)
+ self.assertEqual(len(result['entries']), 0)
def test_youtube_course(self):
dl = FakeDownloader()