aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_all_urls.py
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-12-01 22:36:18 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-12-01 22:36:18 +0100
commit55a10eab48776197245d3d87b86195f182d8d82a (patch)
treec96c845cfc43cf6e6639ef0a3131739b30bf3846 /test/test_all_urls.py
parent355e4fd07e7f9c0632d9d78415675f8b5cc3c2ce (diff)
downloadyoutube-dl-55a10eab48776197245d3d87b86195f182d8d82a.zip
youtube-dl-55a10eab48776197245d3d87b86195f182d8d82a.tar.gz
youtube-dl-55a10eab48776197245d3d87b86195f182d8d82a.tar.bz2
[vimeo] Add an extractor for users (closes #1871)
Diffstat (limited to 'test/test_all_urls.py')
-rw-r--r--test/test_all_urls.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test_all_urls.py b/test/test_all_urls.py
index 1f1adb6..6b9764c 100644
--- a/test/test_all_urls.py
+++ b/test/test_all_urls.py
@@ -106,6 +106,10 @@ 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'])
+
if __name__ == '__main__':
unittest.main()