#!/cygdrive/c/Python26/python.exe

# CMake mechanism for setting PYTHONPATH for test does not work on XP,
# so directory name is passed as argument to python, a real 
# programming language.
import sys
sys.path.append(sys.argv[1])

import hello_ext

print hello_ext.greet()

assert hello_ext.greet() == "hello, world"

