mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
a70b7a3e05
* +pytest.org * improve dep versions * shouldn't require pip to use, I believe Co-authored-by: neil <neil@neils-MacBook-Pro.local> Co-authored-by: Jacob Heider <jacob@tea.xyz>
6 lines
72 B
Python
6 lines
72 B
Python
def inc(x):
|
|
return x + 1
|
|
|
|
|
|
def test_answer():
|
|
assert inc(3) == 4 |