mirror of https://github.com/yt-dlp/yt-dlp
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
340 B
Python
14 lines
340 B
Python
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()
|