stage.set_background("moon")
sprite = codesters.Sprite("astronaut1")
sprite.go_to(-125, -50)
try:
tval1 = sprite.get_y()
except:
tval1 = "DNE"
t1 = TestObjective()
t1.add_success(tval1 == -150, "Great Job!")
t1.add_failure(tval1 == 0, "Did you move the sprite down?")
t1.add_failure(tval1 == -50, "Did you change the second number in the Go To command?")
t1.add_failure(tval1 == "DNE", "Did you delete your sprite?")
t1.add_creative(tval1 != -150 and tval1 != 0 and tval1 != -50 and tval1 != "DNE", "That's a good place for the sprite!")
#t1.add_default("Creative choice!")
tester = TestManager()
tester.add_test_list([t1])
tester.run_tests()
tester.display_first_feedback()