diff options
| author | Ismaël Mejía <iemejia@gmail.com> | 2013-11-02 19:56:06 +0100 | 
|---|---|---|
| committer | Ismaël Mejía <iemejia@gmail.com> | 2013-11-02 19:56:06 +0100 | 
| commit | 38fcd4597aac71c20583c7869479727b6065a9bb (patch) | |
| tree | 114b0217220c74e053c336c66aa12365b0773ab1 /test | |
| parent | 38db46794f3ccfef09094db9b411e55acd4c1a3d (diff) | |
| parent | 165e3bb67a6d737f33d0aa2024c652b363d85ebe (diff) | |
Merge remote-tracking branch 'iemejia/master'
Diffstat (limited to 'test')
| -rw-r--r-- | test/test_playlists.py | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/test/test_playlists.py b/test/test_playlists.py index d6a8d56df..de1e8d88e 100644 --- a/test/test_playlists.py +++ b/test/test_playlists.py @@ -20,6 +20,7 @@ from youtube_dl.extractor import (      SoundcloudUserIE,      LivestreamIE,      NHLVideocenterIE, +    BambuserChannelIE,  ) @@ -85,5 +86,13 @@ class TestPlaylists(unittest.TestCase):          self.assertEqual(result['title'], u'Highlights')          self.assertEqual(len(result['entries']), 12) +    def test_bambuser_channel(self): +        dl = FakeYDL() +        ie = BambuserChannelIE(dl) +        result = ie.extract('http://bambuser.com/channel/pixelversity') +        self.assertIsPlaylist(result) +        self.assertEqual(result['title'], u'pixelversity') +        self.assertTrue(len(result['entries']) >= 66) +  if __name__ == '__main__':      unittest.main() | 
