17 lines
430 B
Python
17 lines
430 B
Python
import os.path
|
|
import subprocess
|
|
import sys
|
|
|
|
testname = os.path.basename(os.path.dirname(os.path.abspath(__file__)))
|
|
print "Testing " + testname + " - split modules"
|
|
|
|
import pkg1.foo
|
|
|
|
print " Finished importing pkg1.foo"
|
|
|
|
if not(pkg1.foo.count() == 3):
|
|
raise RuntimeError("test failed")
|
|
|
|
commandline = sys.executable + " -m pkg1.foo"
|
|
subprocess.check_call(commandline, shell=True)
|
|
print(" Finished running: " + commandline)
|