Exemplo n.º 1
0
def test_pet_the_pet():
    test = Animal()
    test.pet_the_pet()  # happiness + 10
    assert (test.health == 5)
    assert (test.happiness == 25)
    assert (test.hunger == 0)
Exemplo n.º 2
0
def test_pet_the_pet():
    test = Animal()
    test.pet_the_pet()  # happiness + 10
    assert test.health == 5
    assert test.happiness == 25
    assert test.hunger == 0