added pass and fail tests
This commit is contained in:
@ -3,5 +3,9 @@ def func(x):
|
||||
return x + 1
|
||||
|
||||
|
||||
def test_answer():
|
||||
def test_pass():
|
||||
assert func(4) == 5
|
||||
|
||||
|
||||
def test_failure():
|
||||
assert func(3) == 5
|
Reference in New Issue
Block a user