1
0
Fork 0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-03-09 12:50:23 -05:00
yt-dlp/test/test_import.py

14 lines
340 B
Python
Raw Normal View History

2012-11-27 19:00:45 -06:00
import unittest
import sys
import os.path
import subprocess
class TestImport(unittest.TestCase):
2012-11-27 19:04:46 -06:00
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)
2012-11-27 19:00:45 -06:00
if __name__ == '__main__':
2012-11-27 19:04:46 -06:00
unittest.main()