Files
kaipy/tests/test_pass.py
2025-01-30 14:57:33 -07:00

5 lines
68 B
Python

def inc(x):
return x + 1
def test_inc():
assert inc(3) == 4