Ejemplo n.º 1
0
def test_fail():
    thing = Thing("Albert")
    assert "Wrong!" == thing.return_hello_name()
Ejemplo n.º 2
0
def test_correct_greeting():
    thing = Thing("Bob")
    assert "Hello Bob!" == thing.return_hello_name()