[tv2] Fix test_TV2

This commit is contained in:
Yen Chi Hsuan 2016-01-31 03:42:34 +08:00
parent 809e1857c5
commit ed1a390583

View file

@ -17,18 +17,21 @@ class TV2IE(InfoExtractor):
_VALID_URL = 'http://(?:www\.)?tv2\.no/v/(?P<id>\d+)' _VALID_URL = 'http://(?:www\.)?tv2\.no/v/(?P<id>\d+)'
_TEST = { _TEST = {
'url': 'http://www.tv2.no/v/916509/', 'url': 'http://www.tv2.no/v/916509/',
'md5': '9cb9e3410b18b515d71892f27856e9b1',
'info_dict': { 'info_dict': {
'id': '916509', 'id': '916509',
'ext': 'flv', 'ext': 'mp4',
'title': 'Se Gryttens hyllest av Steven Gerrard', 'title': 'Se Frode Gryttens hyllest av Steven Gerrard',
'description': 'TV 2 Sportens huspoet tar avskjed med Liverpools kaptein Steven Gerrard.', 'description': 'TV 2 Sportens huspoet tar avskjed med Liverpools kaptein Steven Gerrard.',
'timestamp': 1431715610, 'timestamp': 1431715610,
'upload_date': '20150515', 'upload_date': '20150515',
'duration': 156.967, 'duration': 156.967,
'view_count': int, 'view_count': int,
'categories': list, 'categories': list,
} },
'params': {
# m3u8 download
'skip_download': True,
},
} }
def _real_extract(self, url): def _real_extract(self, url):