Esempio n. 1
0
def test_check_fizz():
    """ Checks if check_fizz returns fizz if the number is divisible by three"""
    number = 3
    result = check_fizz(number)
    assert result == "fizz"