projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f00efe
)
test import
author
Philipp Hagemeister
<phihag@phihag.de>
Wed, 28 Nov 2012 01:00:45 +0000
(
02:00
+0100)
committer
Philipp Hagemeister
<phihag@phihag.de>
Wed, 28 Nov 2012 01:00:45 +0000
(
02:00
+0100)
test/test_import.py
[new file with mode: 0644]
patch
|
blob
diff --git a/test/test_import.py
b/test/test_import.py
new file mode 100644
(file)
index 0000000..
6c5d0bc
--- /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()