Add missing print statements to the Python import_packages tests

This commit is contained in:
William S Fulton 2016-06-06 22:12:56 +01:00
commit dd40a25349
3 changed files with 23 additions and 0 deletions

View file

@ -1,3 +1,10 @@
import os.path
testname = os.path.basename(os.path.dirname(os.path.abspath(__file__)))
print "Testing " + testname + " - split modules"
import pkg1.foo
print " Finished importing pkg1.foo"
assert(pkg1.foo.count() == 3)

View file

@ -1,3 +1,10 @@
import os.path
testname = os.path.basename(os.path.dirname(os.path.abspath(__file__)))
print "Testing " + testname + " - split modules"
import pkg1.foo
print " Finished importing pkg1.foo"
assert(pkg1.foo.count() == 3)