about summary refs log tree commit diff
path: root/youtube_dl/extractor/worldstarhiphop.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-06-27 18:28:45 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-06-27 18:28:45 +0200
commit6b47c7f24ef7fee9f714a71f51c27ff61ed632e9 (patch)
tree980cff35223b2348443ad2ab760b8000eb76ce8f /youtube_dl/extractor/worldstarhiphop.py
parentd798e1c7a99d75b5e04b71b01faf925614b58d59 (diff)
downloadyoutube-dl-6b47c7f24ef7fee9f714a71f51c27ff61ed632e9.tar.gz
youtube-dl-6b47c7f24ef7fee9f714a71f51c27ff61ed632e9.tar.xz
youtube-dl-6b47c7f24ef7fee9f714a71f51c27ff61ed632e9.zip
Allow moving tests into IE files
Allow adding download tests right in the IE file.
This will cut down on merge conflicts and make it more likely that new IE authors will add tests right away.
Diffstat (limited to 'youtube_dl/extractor/worldstarhiphop.py')
-rw-r--r--youtube_dl/extractor/worldstarhiphop.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/youtube_dl/extractor/worldstarhiphop.py b/youtube_dl/extractor/worldstarhiphop.py
index 531d0889f..5b9779c05 100644
--- a/youtube_dl/extractor/worldstarhiphop.py
+++ b/youtube_dl/extractor/worldstarhiphop.py
@@ -5,7 +5,15 @@ from .common import InfoExtractor
 
 class WorldStarHipHopIE(InfoExtractor):
     _VALID_URL = r'https?://(?:www|m)\.worldstar(?:candy|hiphop)\.com/videos/video\.php\?v=(?P<id>.*)'
-    IE_NAME = u'WorldStarHipHop'
+    _TEST = {
+        "url": "http://www.worldstarhiphop.com/videos/video.php?v=wshh6a7q1ny0G34ZwuIO",
+        "file": "wshh6a7q1ny0G34ZwuIO.mp4",
+        "md5": "9d04de741161603bf7071bbf4e883186",
+        "info_dict": {
+            "title": "Video: KO Of The Week: MMA Fighter Gets Knocked Out By Swift Head Kick!"
+        }
+    }
+
 
     def _real_extract(self, url):
         m = re.match(self._VALID_URL, url)