mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-07-20 04:17:08 -05:00
test import
This commit is contained in:
13
test/test_import.py
Normal file
13
test/test_import.py
Normal file
@ -0,0 +1,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()
|
Reference in New Issue
Block a user