diff options
| author | Philipp Hagemeister <phihag@phihag.de> | 2013-12-09 19:57:00 +0100 | 
|---|---|---|
| committer | Philipp Hagemeister <phihag@phihag.de> | 2013-12-09 19:57:00 +0100 | 
| commit | 4ff50ef84607ee60ff813f7d7f3d35c8b497bf07 (patch) | |
| tree | 8cbb032caaf9aa875dbf0143bcfe962dedcf59ef /test | |
| parent | caefb1de877e163fa3ece44757cb2fae6adf47e4 (diff) | |
[soundcloud] Do not match sets (Fixes #1930)
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 6b9764c67..e9458b2e3 100644 --- a/test/test_all_urls.py +++ b/test/test_all_urls.py @@ -110,6 +110,9 @@ class TestAllURLsMatching(unittest.TestCase):          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()  | 
