summaryrefslogtreecommitdiff
path: root/Examples/python/import_packages/split_modules/vanilla_split/runme.py
blob: a188364f1fea216ff3caa1ea194a17d557747a73 (plain)
1
2
3
4
5
6
7
8
9
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)