diff options
author | felix <m.p.isaev@yandex.com> | 2015-03-17 18:54:36 +0100 |
---|---|---|
committer | felix <m.p.isaev@yandex.com> | 2015-03-17 18:54:36 +0100 |
commit | 9ef4f12b534578ae3d3e47815492c90826c03c36 (patch) | |
tree | 6cd0063b813e11cbb877ec3593d1b3c5d7098a4e /youtube_dl/extractor/comedycentral.py | |
parent | 2e90dff2c2ecade8afb444b086fbc0ad6d2c812d (diff) |
testcases for libsyn and The Daily Show Podcast extractors
Diffstat (limited to 'youtube_dl/extractor/comedycentral.py')
-rw-r--r-- | youtube_dl/extractor/comedycentral.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/youtube_dl/extractor/comedycentral.py b/youtube_dl/extractor/comedycentral.py index e427b9821..bd3817b56 100644 --- a/youtube_dl/extractor/comedycentral.py +++ b/youtube_dl/extractor/comedycentral.py @@ -276,6 +276,10 @@ class ComedyCentralShowsIE(MTVServicesInfoExtractor): class TheDailyShowPodcastIE(InfoExtractor): _VALID_URL = r'(?P<scheme>https?:)?//thedailyshow\.cc\.com/podcast/(?P<id>[a-z\-]+)' + _TESTS = [{ + "url": "http://thedailyshow.cc.com/podcast/episodetwelve", + 'only_matching': True, + }] def _real_extract(self, url): display_id = self._match_id(url) |