diff options
author | remitamine <remitamine@gmail.com> | 2016-03-31 00:25:11 +0100 |
---|---|---|
committer | remitamine <remitamine@gmail.com> | 2016-03-31 00:25:11 +0100 |
commit | ce548296fe8bde2756fd9915bd744c904231de8f (patch) | |
tree | 8fd504cdccd05e4006317ca94e66f19bf63bbb66 /youtube_dl/extractor/cnbc.py | |
parent | c02ec7d4300d3e2607f48fe73011fd8caa38f90c (diff) |
[cnbc] fix test
Diffstat (limited to 'youtube_dl/extractor/cnbc.py')
-rw-r--r-- | youtube_dl/extractor/cnbc.py | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/youtube_dl/extractor/cnbc.py b/youtube_dl/extractor/cnbc.py index 593e459aa..25b308752 100644 --- a/youtube_dl/extractor/cnbc.py +++ b/youtube_dl/extractor/cnbc.py @@ -9,12 +9,16 @@ class CNBCIE(InfoExtractor): _VALID_URL = r'https?://video\.cnbc\.com/gallery/\?video=(?P<id>[0-9]+)' _TEST = { 'url': 'http://video.cnbc.com/gallery/?video=3000503714', - 'md5': '', 'info_dict': { 'id': '3000503714', 'ext': 'mp4', - 'title': 'Video title goes here', - } + 'title': 'Fighting zombies is big business', + 'description': 'md5:0c100d8e1a7947bd2feec9a5550e519e', + }, + 'params': { + # m3u8 download + 'skip_download': True, + }, } def _real_extract(self, url): |