Files
sqlalchemy-fastapi-pydentic…/server/testing/tests/first_test.py
2025-10-03 14:47:12 +03:00

7 lines
121 B
Python

# test_math.py
def add(a, b):
return a + b
def test_addition():
assert add(2, 2) == 4
assert add(-1, 1) == 0