about summary refs log tree commit diff
path: root/test/test_all_urls.py
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-02-06 19:46:26 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-02-06 19:46:26 +0100
commitd67cc9fa7c1c38fa72ed8990965ef0aeebbdb43a (patch)
tree03474a96c8b9fd09c3f792beb398a3e5b1fa5dfb /test/test_all_urls.py
parentbf3a2fe923a7e9e1d25fb74170aa4cd5223c1632 (diff)
downloadyoutube-dl-d67cc9fa7c1c38fa72ed8990965ef0aeebbdb43a.tar.gz
youtube-dl-d67cc9fa7c1c38fa72ed8990965ef0aeebbdb43a.tar.xz
youtube-dl-d67cc9fa7c1c38fa72ed8990965ef0aeebbdb43a.zip
[youtube:playlist] Recognize ‘top tracks’ urls (closes #2332)
The list parameter starts with ‘MC’ and can have more characters after it, including dots
Diffstat (limited to 'test/test_all_urls.py')
-rw-r--r--test/test_all_urls.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_all_urls.py b/test/test_all_urls.py
index 94cbce6e8..dcce9ddb8 100644
--- a/test/test_all_urls.py
+++ b/test/test_all_urls.py
@@ -37,6 +37,8 @@ class TestAllURLsMatching(unittest.TestCase):
         assertPlaylist(u'https://www.youtube.com/playlist?list=PLwP_SiAcdui0KVebT0mU9Apz359a4ubsC')
         assertPlaylist(u'https://www.youtube.com/watch?v=AV6J6_AeFEQ&playnext=1&list=PL4023E734DA416012') #668
         self.assertFalse('youtube:playlist' in self.matching_ies(u'PLtS2H6bU1M'))
+        # Top tracks
+        assertPlaylist('https://www.youtube.com/playlist?list=MCUS.20142101')
 
     def test_youtube_matching(self):
         self.assertTrue(YoutubeIE.suitable(u'PLtS2H6bU1M'))