Added some tests

This commit is contained in:
rubyist 2020-03-05 17:01:52 -08:00
parent e517a8338f
commit 51db764448
1 changed files with 17 additions and 1 deletions

View File

@ -12,7 +12,23 @@ class PonyFMIE(InfoExtractor):
point using a separate class that will be in this file.
"""
_VALID_URL = r'https?://pony\.fm/tracks/(?P<id>\d+)-.+'
_TESTS = []
_TESTS = [{
'url': 'https://pony.fm/tracks/43462-summer-wind-fallout-equestria-skybolt',
'info_dict': {
'id': '43462',
'ext': 'flac',
'title': 'Summer Wind (Fallout: Equestria) - SkyBolt',
'uploader': 'SkyBoltsMusic',
}
}, {
'url': 'https://pony.fm/tracks/43852-kirin-ts',
'info_dict': {
'id': '43852',
'ext': 'mp3',
'title': 'KIRIN TS',
'uploader': '7TAIL3DFOXX'
}
}]
def _real_extract(self, url):
track_id = self._match_id(url)