Skip to content

Commit

Permalink
added test for ex.fm
Browse files Browse the repository at this point in the history
  • Loading branch information
yasoob committed Jul 18, 2013
1 parent b6ef402 commit c4949c5
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions youtube_dl/extractor/exfm.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@
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)
Expand Down

0 comments on commit c4949c5

Please sign in to comment.