コード例 #1
0
 def test_alterar_correntista(self):
     conta = Conta(1234, "Pedro")
     conta.set_correntista("Maria")
     conta.get_correntista() | should | equal_to("Maria")
コード例 #2
0
 def test_tem_correntista(self):
     conta = Conta(1234, "Pedro")
     conta.get_correntista() | should | equal_to("Pedro")