aboutsummaryrefslogtreecommitdiff
path: root/test/test_import.py
blob: acf95444dfa728f7dd3b5697ffbc52073a3f061b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import unittest

import sys
import os.path
import subprocess

class TestImport(unittest.TestCase):
    def test_import(self):
        rootDir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
        subprocess.check_call([sys.executable, '-c', 'import youtube_dl'], cwd=rootDir)

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