diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-04-01 00:25:11 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-04-01 00:25:11 +0200 |
commit | 651486621dd79025a1b0ea08abe786b50a9604ad (patch) | |
tree | f6b3a5a55b24b5516bae6133ce87e7bc3b4984b3 /test | |
parent | 28d9032c88e746860b75a035b053501d3d105f8c (diff) |
[comedycentral] Allow URLs with query parts (fixes #2661)
Diffstat (limited to 'test')
-rw-r--r-- | test/test_all_urls.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test_all_urls.py b/test/test_all_urls.py index dffe3f958..ed041ffda 100644 --- a/test/test_all_urls.py +++ b/test/test_all_urls.py @@ -150,6 +150,9 @@ class TestAllURLsMatching(unittest.TestCase): self.assertMatch( 'http://thecolbertreport.cc.com/videos/29w6fx/-realhumanpraise-for-fox-news', ['ComedyCentralShows']) + self.assertMatch( + 'http://thecolbertreport.cc.com/videos/gh6urb/neil-degrasse-tyson-pt--1?xrs=eml_col_031114', + ['ComedyCentralShows']) if __name__ == '__main__': unittest.main() |