diff options
| author | Philipp Hagemeister <phihag@phihag.de> | 2013-12-02 15:56:35 +0100 | 
|---|---|---|
| committer | Philipp Hagemeister <phihag@phihag.de> | 2013-12-02 15:56:35 +0100 | 
| commit | 25939ffe56905784c9260e2fa33231f03ccf08a5 (patch) | |
| tree | 1efad6475dd9563e7dcc526e67c48239b17513c1 /test/test_playlists.py | |
| parent | 0037e02921e7f70409ce113fb060765a6f24a27e (diff) | |
| parent | 5270d8cb1389a9b26fa698137bf4861d4bab6a25 (diff) | |
Merge branch 'smotri.com' of https://github.com/dstftw/youtube-dl
Diffstat (limited to 'test/test_playlists.py')
| -rw-r--r-- | test/test_playlists.py | 22 | 
1 files changed, 21 insertions, 1 deletions
diff --git a/test/test_playlists.py b/test/test_playlists.py index 13a6f4b2f..00c950109 100644 --- a/test/test_playlists.py +++ b/test/test_playlists.py @@ -22,7 +22,9 @@ from youtube_dl.extractor import (      LivestreamIE,      NHLVideocenterIE,      BambuserChannelIE, -    BandcampAlbumIE +    BandcampAlbumIE, +    SmotriCommunityIE, +    SmotriUserIE  ) @@ -119,6 +121,24 @@ class TestPlaylists(unittest.TestCase):          self.assertIsPlaylist(result)          self.assertEqual(result['title'], u'Nightmare Night EP')          self.assertTrue(len(result['entries']) >= 4) +         +    def test_smotri_community(self): +        dl = FakeYDL() +        ie = SmotriCommunityIE(dl) +        result = ie.extract('http://smotri.com/community/video/kommuna') +        self.assertIsPlaylist(result) +        self.assertEqual(result['id'], u'kommuna') +        self.assertEqual(result['title'], u'КПРФ') +        self.assertTrue(len(result['entries']) >= 4) +         +    def test_smotri_user(self): +        dl = FakeYDL() +        ie = SmotriUserIE(dl) +        result = ie.extract('http://smotri.com/user/inspector') +        self.assertIsPlaylist(result) +        self.assertEqual(result['id'], u'inspector') +        self.assertEqual(result['title'], u'Inspector') +        self.assertTrue(len(result['entries']) >= 9)  if __name__ == '__main__':      unittest.main()  | 
