mirror of
https://github.com/JHUAPL/kaipy.git
synced 2026-01-08 22:07:57 -05:00
5 lines
68 B
Python
5 lines
68 B
Python
def inc(x):
|
|
return x + 1
|
|
|
|
def test_inc():
|
|
assert inc(3) == 4 |