diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-11-15 22:11:47 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-11-15 22:11:47 +0700 |
commit | 58355a3bf163349831b076c0fac4c09a286d5aa4 (patch) | |
tree | 73bb90fe7465fcf2d683db3f58034184c7947250 | |
parent | 49b69ad91c4a638eb8b9bdb9846819fa9274a38e (diff) |
[vlive] Add test for #11203
-rw-r--r-- | youtube_dl/extractor/vlive.py | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/youtube_dl/extractor/vlive.py b/youtube_dl/extractor/vlive.py index c3aa57cd6..acf9fda48 100644 --- a/youtube_dl/extractor/vlive.py +++ b/youtube_dl/extractor/vlive.py @@ -17,7 +17,7 @@ from ..compat import compat_urllib_parse_urlencode class VLiveIE(InfoExtractor): IE_NAME = 'vlive' _VALID_URL = r'https?://(?:(?:www|m)\.)?vlive\.tv/video/(?P<id>[0-9]+)' - _TEST = { + _TESTS = [{ 'url': 'http://www.vlive.tv/video/1326', 'md5': 'cc7314812855ce56de70a06a27314983', 'info_dict': { @@ -27,7 +27,20 @@ class VLiveIE(InfoExtractor): 'creator': "Girl's Day", 'view_count': int, }, - } + }, { + 'url': 'http://www.vlive.tv/video/16937', + 'info_dict': { + 'id': '16937', + 'ext': 'mp4', + 'title': '[V LIVE] 첸백시 걍방', + 'creator': 'EXO', + 'view_count': int, + 'subtitles': 'mincount:12', + }, + 'params': { + 'skip_download': True, + }, + }] def _real_extract(self, url): video_id = self._match_id(url) |