stage.set_background("concert")
sprite = codesters.Sprite("person4")
sprite.move_down(100)
sprite.flip_up_down()
sprite.move_right(150)
try:
tval1 = sprite.get_x()
except:
tval1 = "DNE"
t1 = TestObjective()
t1.add_success(tval1 == -50, "Great Job!")
t1.add_failure(tval1 == 100, "Did you change the integer in move left?")
t1.add_failure(tval1 == 150, "Did you move the sprite?")
t1.add_failure(tval1 == "DNE", "Did you delete the sprite?")
t1.add_creative(tval1 != 150 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()