aboutsummaryrefslogtreecommitdiff
path: root/test/test_youtube_playlist_ids.py
blob: b4dcedb4541f66c5e7c6a9a04c49f8f7c6082c1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python

import sys
import unittest

# Allow direct execution
import os
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))

from youtube_dl.InfoExtractors import YoutubeIE, YoutubePlaylistIE

class TestYoutubePlaylistMatching(unittest.TestCase):
    def test_playlist_matching(self):
        assert YoutubePlaylistIE().suitable(u'ECUl4u3cNGP61MdtwGTqZA0MreSaDybji8')
        assert YoutubePlaylistIE().suitable(u'PL63F0C78739B09958')
        assert not YoutubePlaylistIE().suitable(u'PLtS2H6bU1M')

    def test_youtube_matching(self):
        assert YoutubeIE().suitable(u'PLtS2H6bU1M')

if __name__ == '__main__':
    unittest.main()