From: Philipp Hagemeister Date: Tue, 28 Jan 2014 02:37:23 +0000 (+0100) Subject: [tumblr] Test new URL format (#2255) X-Git-Tag: 2021.01.07~12204 X-Git-Url: https://jfr.im/git/yt-dlp.git/commitdiff_plain/456895d9cfb9ee37eb9b328f1a96cee601904fb8 [tumblr] Test new URL format (#2255) --- diff --git a/test/test_all_urls.py b/test/test_all_urls.py index 75547f42a..94cbce6e8 100644 --- a/test/test_all_urls.py +++ b/test/test_all_urls.py @@ -120,5 +120,9 @@ def test_vimeo_matching(self): def test_soundcloud_not_matching_sets(self): self.assertMatch('http://soundcloud.com/floex/sets/gone-ep', ['soundcloud:set']) + def test_tumblr(self): + self.assertMatch('http://tatianamaslanydaily.tumblr.com/post/54196191430/orphan-black-dvd-extra-behind-the-scenes', ['Tumblr']) + self.assertMatch('http://tatianamaslanydaily.tumblr.com/post/54196191430', ['Tumblr']) + if __name__ == '__main__': unittest.main()