mirror of
https://github.com/Tencent/Metis.git
synced 2025-12-25 19:52:49 +00:00
10 lines
105 B
Python
10 lines
105 B
Python
# content of test_sample.py
|
|
def func(x):
|
|
return x + 1
|
|
|
|
|
|
def test_answer():
|
|
assert func(4) == 5
|
|
|
|
|