aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorM.Yasoob Khalid <yasoob.khld@gmail.com>2013-07-18 12:33:31 +0500
committerM.Yasoob Khalid <yasoob.khld@gmail.com>2013-07-18 12:33:31 +0500
commitc4949c50f97e1f8f9eaa6b9af4b998592c4a4975 (patch)
treeeb66c4c6ec5f8ecad363a2c883a73b5d88deea54
parentb6ef4029055fdb5c6b27ac0d82d365475f84f32d (diff)
downloadyoutube-dl-c4949c50f97e1f8f9eaa6b9af4b998592c4a4975.tar.xz
added test for ex.fm
-rw-r--r--youtube_dl/extractor/exfm.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/youtube_dl/extractor/exfm.py b/youtube_dl/extractor/exfm.py
index cc0758b96..777bc4dce 100644
--- a/youtube_dl/extractor/exfm.py
+++ b/youtube_dl/extractor/exfm.py
@@ -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)