diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/helper.py | 2 | ||||
| -rw-r--r-- | test/test_playlists.py | 8 | 
2 files changed, 9 insertions, 1 deletions
| diff --git a/test/helper.py b/test/helper.py index d5e0a603e..230d2bd67 100644 --- a/test/helper.py +++ b/test/helper.py @@ -107,7 +107,7 @@ def expect_info_dict(self, expected_dict, got_dict):          elif isinstance(expected, type):              got = got_dict.get(info_field)              self.assertTrue(isinstance(got, expected), -                u'Expected type %r, but got value %r of type %r' % (expected, got, type(got))) +                u'Expected type %r for field %s, but got value %r of type %r' % (expected, info_field, got, type(got)))          else:              if isinstance(expected, compat_str) and expected.startswith('md5:'):                  got = 'md5:' + md5(got_dict.get(info_field)) diff --git a/test/test_playlists.py b/test/test_playlists.py index fe6274e60..cc871698a 100644 --- a/test/test_playlists.py +++ b/test/test_playlists.py @@ -23,6 +23,7 @@ from youtube_dl.extractor import (      VimeoUserIE,      VimeoAlbumIE,      VimeoGroupsIE, +    VineUserIE,      UstreamChannelIE,      SoundcloudSetIE,      SoundcloudUserIE, @@ -102,6 +103,13 @@ class TestPlaylists(unittest.TestCase):          self.assertEqual(result['title'], 'Rolex Awards for Enterprise')          self.assertTrue(len(result['entries']) > 72) +    def test_vine_user(self): +        dl = FakeYDL() +        ie = VineUserIE(dl) +        result = ie.extract('https://vine.co/Visa') +        self.assertIsPlaylist(result) +        self.assertTrue(len(result['entries']) >= 50) +      def test_ustream_channel(self):          dl = FakeYDL()          ie = UstreamChannelIE(dl) | 
