diff options
| author | Philipp Hagemeister <phihag@phihag.de> | 2015-02-18 00:33:31 +0100 | 
|---|---|---|
| committer | Philipp Hagemeister <phihag@phihag.de> | 2015-02-18 00:33:31 +0100 | 
| commit | a3fa5da4967bf2699bfd982cf56a8f627a13bda4 (patch) | |
| tree | 54911af49d0130543ba8c72fd7a03412f96b202b | |
| parent | 30965ac66a4e33b8e70d6c0cf5da1a746054d6cd (diff) | |
[vimeo] Amend playlist tests
| -rw-r--r-- | youtube_dl/extractor/vimeo.py | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/youtube_dl/extractor/vimeo.py b/youtube_dl/extractor/vimeo.py index 1959d5e36..e7284049d 100644 --- a/youtube_dl/extractor/vimeo.py +++ b/youtube_dl/extractor/vimeo.py @@ -405,6 +405,7 @@ class VimeoChannelIE(InfoExtractor):      _TESTS = [{          'url': 'http://vimeo.com/channels/tributes',          'info_dict': { +            'id': 'tributes',              'title': 'Vimeo Tributes',          },          'playlist_mincount': 25, @@ -483,6 +484,7 @@ class VimeoUserIE(VimeoChannelIE):          'url': 'http://vimeo.com/nkistudio/videos',          'info_dict': {              'title': 'Nki', +            'id': 'nkistudio',          },          'playlist_mincount': 66,      }] @@ -500,6 +502,7 @@ class VimeoAlbumIE(VimeoChannelIE):      _TESTS = [{          'url': 'http://vimeo.com/album/2632481',          'info_dict': { +            'id': '2632481',              'title': 'Staff Favorites: November 2013',          },          'playlist_mincount': 13, @@ -530,6 +533,7 @@ class VimeoGroupsIE(VimeoAlbumIE):      _TESTS = [{          'url': 'http://vimeo.com/groups/rolexawards',          'info_dict': { +            'id': 'rolexawards',              'title': 'Rolex Awards for Enterprise',          },          'playlist_mincount': 73, @@ -612,6 +616,7 @@ class VimeoLikesIE(InfoExtractor):          'url': 'https://vimeo.com/user755559/likes/',          'playlist_mincount': 293,          "info_dict": { +            'id': 'user755559_likes',              "description": "See all the videos urza likes",              "title": 'Videos urza likes',          },  | 
