def test_consultar_cor(self):
     bola = Bola("azul")
     bola.consultar_cor() |should| equal_to("azul")
 def test_trocar_cor(self):
     bola = Bola("azul")
     bola.alterar_cor("vermelha")
     bola.consultar_cor() |should| equal_to("vermelha")