From 3c8ae5fbce8c1960ba5a84e3d6f10f1842cd7ea6 Mon Sep 17 00:00:00 2001 From: remitamine Date: Tue, 21 Jul 2015 12:41:08 +0100 Subject: [PATCH] [cbssports] change the test --- youtube_dl/extractor/cbssports.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/youtube_dl/extractor/cbssports.py b/youtube_dl/extractor/cbssports.py index ae47e74cc..7913bd1bd 100644 --- a/youtube_dl/extractor/cbssports.py +++ b/youtube_dl/extractor/cbssports.py @@ -9,12 +9,16 @@ class CBSSportsIE(InfoExtractor): _VALID_URL = r'http://www\.cbssports\.com/video/player/(?P
[^/]+)/(?P[^/]+)' _TEST = { - 'url': 'http://www.cbssports.com/video/player/tennis/318462531970/0/us-open-flashbacks-1990s', + 'url': 'http://www.cbssports.com/video/player/tennis/482755139719/0/serena-williams-wins-2015-wimbledon-championship', 'info_dict': { - 'id': '_d5_GbO8p1sT', + 'id': 'GQGZp_4tBqW6', 'ext': 'flv', - 'title': 'US Open flashbacks: 1990s', - 'description': 'Bill Macatee relives the best moments in US Open history from the 1990s.', + 'title': 'Serena Williams wins 2015 Wimbledon Championship', + 'description': 'Serena Williams completed the Serena Slam on Saturday and now holds all four major titles. Jamie Erdahl has the latest on what the win means for Serena.', + }, + 'params': { + # rtmp download + 'skip_download': True, }, }