stage.set_background("winter")
sprite = codesters.Sprite("person1")
try:
tval1 = sprite.get_image_name()
except:
tval1 = "DNE"
t1 = TestObjective()
t1.add_success(tval1 == "fox", "Great Job!")
t1.add_failure(tval1 == "person1", "Did you change the sprite's image?")
t1.add_failure(tval1 is None, "Did you delete the sprite?")
t1.add_failure(tval1 == "DNE", "Did you delete the sprite?")
t1.add_creative(tval1 != "fox" and tval1 != "person1" and tval1 is not None and tval1 != "DNE", "That is a great sprite!")
#t1.add_default("Creative choice!")
tester = TestManager()
tester.add_test_list([t1])
tester.run_tests()
tester.display_first_feedback()