# testfuncs.py # # September 12, 2012 """Unit test to test the module pointfuncs.py""" import cunittest # For assert_equals and assert_true from pointfuncs import * # This is what we are testing from point import * # pointfuncs needs point to work # Application code if __name__ == "__main__": print "Module pointfuncs is working correctly"