From be0f77d07598f339a90e50cb03f1022d99f5c0a8 Mon Sep 17 00:00:00 2001 From: Philipp Hagemeister Date: Wed, 28 Nov 2012 02:00:45 +0100 Subject: [PATCH] test import --- test/test_import.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 test/test_import.py 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()