Exemplo n.º 1
0
def test_employee_name_is_none(employee: Employee):
    assert employee.fullname() is not None
Exemplo n.º 2
0
def test_employee_name_is_correct(employee: Employee):
    assert employee.fullname() == 'test employee'