summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-12-20 17:23:59 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2013-12-20 17:24:48 +0100
commitbd1488ae647d735abc42db078804cf93c333912f (patch)
tree992284f1479154239cc9778af9951ac9b4f6ea12
parent79fed2a4dfb9be350671632b8e0364cbed9dc83c (diff)
downloadyoutube-dl-bd1488ae647d735abc42db078804cf93c333912f.tar.gz
youtube-dl-bd1488ae647d735abc42db078804cf93c333912f.tar.xz
youtube-dl-bd1488ae647d735abc42db078804cf93c333912f.zip
[mdr] Remove test
For context, refer to the http://de.wikipedia.org/wiki/Depublizieren
-rw-r--r--youtube_dl/extractor/mdr.py19
1 files changed, 2 insertions, 17 deletions
diff --git a/youtube_dl/extractor/mdr.py b/youtube_dl/extractor/mdr.py
index d29cf2c07..08ce0647f 100644
--- a/youtube_dl/extractor/mdr.py
+++ b/youtube_dl/extractor/mdr.py
@@ -8,23 +8,8 @@ from ..utils import (
 
 class MDRIE(InfoExtractor):
     _VALID_URL = r'^(?P<domain>(?:https?://)?(?:www\.)?mdr\.de)/mediathek/(?:.*)/(?P<type>video|audio)(?P<video_id>[^/_]+)_.*'
-
-    _TESTS = [{
-        u'url': u'http://www.mdr.de/mediathek/themen/nachrichten/video165624_zc-c5c7de76_zs-3795826d.html',
-        u'file': u'165624.mp4',
-        u'md5': u'ae785f36ecbf2f19b42edf1bc9c85815',
-        u'info_dict': {
-            u"title": u"MDR aktuell Eins30 09.12.2013, 22:48 Uhr"
-        },
-    },
-    {
-        u'url': u'http://www.mdr.de/mediathek/radio/mdr1-radio-sachsen/audio718370_zc-67b21197_zs-1b9b2483.html',
-        u'file': u'718370.mp3',
-        u'md5': u'a9d21345a234c7b45dee612f290fd8d7',
-        u'info_dict': {
-            u"title": u"MDR 1 RADIO SACHSEN 10.12.2013, 05:00 Uhr"
-        },
-    }]
+    
+    # No tests, MDR regularily deletes its videos
 
     def _real_extract(self, url):
         m = re.match(self._VALID_URL, url)