aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2012-11-28 02:00:45 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2012-11-28 02:00:45 +0100
commitbe0f77d07598f339a90e50cb03f1022d99f5c0a8 (patch)
tree0be10bf943d35ad6dfd7b869e06d056d36dc6a91
parent0f00efed4c06fefcd4da7294cb3c92bccf081eaa (diff)
downloadyoutube-dl-be0f77d07598f339a90e50cb03f1022d99f5c0a8.tar.xz
test import
-rw-r--r--test/test_import.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/test_import.py b/test/test_import.py
new file mode 100644
index 000000000..6c5d0bcc1
--- /dev/null
+++ b/test/test_import.py
@@ -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()