aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/metacritic.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-04-14 15:12:59 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-04-14 15:12:59 +0800
commit86475d59b1a6892dca5a8eb1ef3f05639ee3ab6a (patch)
tree2f7a88420be3a693e05e4d3c651c91cc97284dda /youtube_dl/extractor/metacritic.py
parent73d93f948ee71b2a07d46fdc4d446255d8ddcc9f (diff)
downloadyoutube-dl-86475d59b1a6892dca5a8eb1ef3f05639ee3ab6a.tar.xz
[metacritic] Add a new valid test case
Diffstat (limited to 'youtube_dl/extractor/metacritic.py')
-rw-r--r--youtube_dl/extractor/metacritic.py14
1 files changed, 12 insertions, 2 deletions
diff --git a/youtube_dl/extractor/metacritic.py b/youtube_dl/extractor/metacritic.py
index e30320569..444ec0310 100644
--- a/youtube_dl/extractor/metacritic.py
+++ b/youtube_dl/extractor/metacritic.py
@@ -11,7 +11,7 @@ from ..utils import (
class MetacriticIE(InfoExtractor):
_VALID_URL = r'https?://www\.metacritic\.com/.+?/trailers/(?P<id>\d+)'
- _TEST = {
+ _TESTS = [{
'url': 'http://www.metacritic.com/game/playstation-4/infamous-second-son/trailers/3698222',
'info_dict': {
'id': '3698222',
@@ -20,7 +20,17 @@ class MetacriticIE(InfoExtractor):
'description': 'Take a peak behind-the-scenes to see how Sucker Punch brings smoke into the universe of inFAMOUS Second Son on the PS4.',
'duration': 221,
},
- }
+ 'skip': 'Not providing trailers anymore',
+ }, {
+ 'url': 'http://www.metacritic.com/game/playstation-4/tales-from-the-borderlands-a-telltale-game-series/trailers/5740315',
+ 'info_dict': {
+ 'id': '5740315',
+ 'ext': 'mp4',
+ 'title': 'Tales from the Borderlands - Finale: The Vault of the Traveler',
+ 'description': 'In the final episode of the season, all hell breaks loose. Jack is now in control of Helios\' systems, and he\'s ready to reclaim his rightful place as king of Hyperion (with or without you).',
+ 'duration': 114,
+ },
+ }]
def _real_extract(self, url):
mobj = re.match(self._VALID_URL, url)