diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-04-01 00:02:29 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-04-01 00:02:32 +0200 |
commit | 16f4eb723a49d6ac7cacddf9678782f4704dff62 (patch) | |
tree | 7c896898d6d46964bdf3e2a77533e8d87aa11c10 /test/test_all_urls.py | |
parent | 1cbd4106201fe9b3890932c5a099892b0a05db19 (diff) |
[comedycentral] Add support for /videos URLs (Fixes #2660)
Diffstat (limited to 'test/test_all_urls.py')
-rw-r--r-- | test/test_all_urls.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/test_all_urls.py b/test/test_all_urls.py index 5b6d18a82..dffe3f958 100644 --- a/test/test_all_urls.py +++ b/test/test_all_urls.py @@ -144,7 +144,12 @@ class TestAllURLsMatching(unittest.TestCase): self.assertMatch('http://video.pbs.org/widget/partnerplayer/980042464/', ['PBS']) def test_ComedyCentralShows(self): - self.assertMatch('http://thedailyshow.cc.com/extended-interviews/xm3fnq/andrew-napolitano-extended-interview', ['ComedyCentralShows']) + self.assertMatch( + 'http://thedailyshow.cc.com/extended-interviews/xm3fnq/andrew-napolitano-extended-interview', + ['ComedyCentralShows']) + self.assertMatch( + 'http://thecolbertreport.cc.com/videos/29w6fx/-realhumanpraise-for-fox-news', + ['ComedyCentralShows']) if __name__ == '__main__': unittest.main() |