youtube-dl/test/test_import.py

14 lines
340 B
Python
Raw Normal View History

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