stage.set_background("pond")
sprite = codesters.Sprite("turtle1")
sprite.set_size(.5)
sprite.pen_down()
try:
tval1 = sprite.get_color()
except:
tval1 = "DNE"
t1 = TestObjective()
t1.add_success(tval1 == "yellow", "Great job!")
t1.add_failure(tval1 == "black", "Did you change the sprite's color?")
t1.add_failure(tval1 == "DNE", "Did you delete the sprite?")
t1.add_creative(tval1 != "black" and tval1 != "yellow", "That's a good color as well!")
tester = TestManager()
tester.add_test_list([t1])
tester.run_tests()
tester.display_first_feedback()