swig/Examples/python/import_packages/namespace_pkg/normal.py

8 lines
172 B
Python

import sys
# Package brave found under one path
sys.path.insert(0, 'path1')
from brave import robin
if not(robin.run() == "AWAY!"):
raise RuntimeError("test failed")