mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 09:36:48 +03:00
7 lines
75 B
Python
7 lines
75 B
Python
def func(x):
|
|
return x + 1
|
|
|
|
|
|
def test_answer():
|
|
assert func(3) == 5
|