X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=test%2Ftest_all_urls.py;h=e9458b2e331526de1c986c697c4a8d0ddd682f14;hb=26e6393134b35121ab956a408250c565596dd2a1;hp=1f1adb6b46e0fa2e8a683e6593f699476397a0cd;hpb=31cb6d8fefaa42aff293b03e37471bb05d5b8391;p=youtube-dl.git diff --git a/test/test_all_urls.py b/test/test_all_urls.py index 1f1adb6b4..e9458b2e3 100644 --- a/test/test_all_urls.py +++ b/test/test_all_urls.py @@ -106,6 +106,13 @@ class TestAllURLsMatching(unittest.TestCase): self.assertMatch(':colbertreport', ['ComedyCentralShows']) self.assertMatch(':cr', ['ComedyCentralShows']) + def test_vimeo_matching(self): + self.assertMatch('http://vimeo.com/channels/tributes', ['vimeo:channel']) + self.assertMatch('http://vimeo.com/user7108434', ['vimeo:user']) + + # https://github.com/rg3/youtube-dl/issues/1930 + def test_soundcloud_not_matching_sets(self): + self.assertMatch('http://soundcloud.com/floex/sets/gone-ep', ['soundcloud:set']) if __name__ == '__main__': unittest.main()