aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-09-21 13:50:52 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-09-21 13:50:52 +0200
commitb00ca882a4c1069de1ec2d04ffd50905c0f8b97f (patch)
treece6b4a1d1e4390fbf36b933dbafd180a468990c1 /test
parent39baacc49f323adc639d502d38a016ebd63acd75 (diff)
downloadyoutube-dl-b00ca882a4c1069de1ec2d04ffd50905c0f8b97f.tar.xz
[livestream] Fix events extraction (fixes #1467)
Diffstat (limited to 'test')
-rw-r--r--test/test_playlists.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/test_playlists.py b/test/test_playlists.py
index e22054d69..c33511333 100644
--- a/test/test_playlists.py
+++ b/test/test_playlists.py
@@ -15,6 +15,7 @@ from youtube_dl.extractor import (
VimeoChannelIE,
UstreamChannelIE,
SoundcloudUserIE,
+ LivestreamIE,
)
from youtube_dl.utils import *
@@ -32,6 +33,7 @@ class TestPlaylists(unittest.TestCase):
self.assertIsPlaylist(result)
self.assertEqual(result['title'], u'SPORT')
self.assertTrue(len(result['entries']) > 20)
+
def test_dailymotion_user(self):
dl = FakeYDL()
ie = DailymotionUserIE(dl)
@@ -64,5 +66,13 @@ class TestPlaylists(unittest.TestCase):
self.assertEqual(result['id'], u'9615865')
self.assertTrue(len(result['entries']) >= 12)
+ def test_livestream_event(self):
+ dl = FakeYDL()
+ ie = LivestreamIE(dl)
+ result = ie.extract('http://new.livestream.com/tedx/cityenglish')
+ self.assertIsPlaylist(result)
+ self.assertEqual(result['title'], u'TEDCity2.0 (English)')
+ self.assertTrue(len(result['entries']) >= 4)
+
if __name__ == '__main__':
unittest.main()