aboutsummaryrefslogtreecommitdiff
path: root/test/test_import.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2012-12-01 15:52:34 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2012-12-01 15:52:34 +0100
commite575b6821ec185ef4f14c433ccc018d748c0fb60 (patch)
treeb90ab9695fb7d5f552b46fb0e7032f12581f43ff /test/test_import.py
parentd78be7e331f3f859f770a37a33286d42680114e7 (diff)
downloadyoutube-dl-e575b6821ec185ef4f14c433ccc018d748c0fb60.tar.xz
Improve execution tests
Diffstat (limited to 'test/test_import.py')
-rw-r--r--test/test_import.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/test_import.py b/test/test_import.py
deleted file mode 100644
index acf95444d..000000000
--- a/test/test_import.py
+++ /dev/null
@@ -1,13 +0,0 @@
-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()