Browse Source

test import

Philipp Hagemeister 12 years ago
parent
commit
be0f77d075
1 changed files with 13 additions and 0 deletions
  1. 13 0
      test/test_import.py

+ 13 - 0
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()