stage.set_background("concert")
sprite = codesters.Sprite("person1")
sprite.set_speed(3)
sprite.move_down(100)
sprite.flip_up_down()
sprite.move_right(150)
sprite.move_left(200)
sprite.flip_up_down()
sprite.turn_left(360)
stage.wait(2)
sprite.flip_right_left()
try:
tval2 = stage.get_total_wait_time()
except:
tval2 = "DNE"
t2 = TestObjective()
t2.add_success(tval2 == 0.75, "Great Job!")
t2.add_failure(tval2 == 0, "Did you add a Wait command?")
t2.add_failure(tval2 == 2, "Did you change the integer in wait?")
t2.add_creative(tval2 != 0.75 and tval2 != 0 and tval2 != 2 and tval2 != "DNE", "That is a good wait time!")
t2.add_default("Creative choice!")
tester = TestManager()
tester.add_test_list([t2])
tester.run_tests()
tester.display_first_feedback()