irt-service/app/test/test_example.py
2022-04-17 23:33:22 -04:00

11 lines
142 B
Python

# content of example.py
def func(x):
return x + 1
def test_pass():
assert func(4) == 5
def test_failure():
assert func(3) == 5