about summary refs log tree commit diff
path: root/test/test_all_urls.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-04-01 00:02:29 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-04-01 00:02:32 +0200
commit16f4eb723a49d6ac7cacddf9678782f4704dff62 (patch)
tree7c896898d6d46964bdf3e2a77533e8d87aa11c10 /test/test_all_urls.py
parent1cbd4106201fe9b3890932c5a099892b0a05db19 (diff)
downloadyoutube-dl-16f4eb723a49d6ac7cacddf9678782f4704dff62.tar.gz
youtube-dl-16f4eb723a49d6ac7cacddf9678782f4704dff62.tar.xz
youtube-dl-16f4eb723a49d6ac7cacddf9678782f4704dff62.zip
[comedycentral] Add support for /videos URLs (Fixes #2660)
Diffstat (limited to 'test/test_all_urls.py')
-rw-r--r--test/test_all_urls.py7
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()