mirror of
https://source.netsyms.com/Mirrors/youtube-dl
synced 2024-11-03 03:40:20 +00:00
test import
This commit is contained in:
parent
0f00efed4c
commit
be0f77d075
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()
|
Loading…
Reference in New Issue
Block a user