diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-04-04 22:23:59 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-04-04 22:23:59 +0200 |
commit | c8edf47b3a96556c1f5d78d5b9b389b84a676bce (patch) | |
tree | 765d801577cf8aebab15e2ec4e43ecb2cf561e51 /test/test_all_urls.py | |
parent | 3b4c26a4286451ca0236245fe42ae9e8b9aafff8 (diff) |
[yahoo] Support https and -uploader URLs (Fixes #2701)
Diffstat (limited to 'test/test_all_urls.py')
-rw-r--r-- | test/test_all_urls.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/test_all_urls.py b/test/test_all_urls.py index bea8c41fb..577f6ac32 100644 --- a/test/test_all_urls.py +++ b/test/test_all_urls.py @@ -157,5 +157,11 @@ class TestAllURLsMatching(unittest.TestCase): 'http://thedailyshow.cc.com/guests/michael-lewis/3efna8/exclusive---michael-lewis-extended-interview-pt--3', ['ComedyCentralShows']) + def test_yahoo_https(self): + # https://github.com/rg3/youtube-dl/issues/2701 + self.assertMatch( + 'https://screen.yahoo.com/smartwatches-latest-wearable-gadgets-163745379-cbs.html', + ['Yahoo']) + if __name__ == '__main__': unittest.main() |