added test for ex.fm
authorM.Yasoob Khalid <yasoob.khld@gmail.com>
Thu, 18 Jul 2013 07:33:31 +0000 (12:33 +0500)
committerM.Yasoob Khalid <yasoob.khld@gmail.com>
Thu, 18 Jul 2013 07:33:31 +0000 (12:33 +0500)
youtube_dl/extractor/exfm.py

index cc0758b96d0ded16de375638dc9c11e72b17bb85..777bc4dced681cdac5b27bfef468d4b90874615c 100644 (file)
@@ -8,6 +8,16 @@ from .common import InfoExtractor
 class ExfmIE(InfoExtractor):
     _VALID_URL = r'(?:http://)?(?:www\.)?ex\.fm/song/([^/]+)'
     _SOUNDCLOUD_URL_ = r'(?:http://)?(?:www\.)?api\.soundcloud.com/tracks/([^/]+)/stream'
+    _TEST = {
+        u'url': u'http://ex.fm/song/1bgtzg',
+        u'file': u'1bgtzg.mp3',
+        u'md5': u'8a7967a3fef10e59a1d6f86240fd41cf',
+        u'info_dict': {
+            u"title": u"We Can't Stop",
+            u"uploader": u"Miley Cyrus",
+            u'thumbnail': u'http://i1.sndcdn.com/artworks-000049666230-w9i7ef-t500x500.jpg?9d68d37'
+        }
+    }
 
     def _real_extract(self, url):
         mobj = re.match(self._VALID_URL, url)