tests: add basic test

in order to see whether pytest runs.

It in fact does: `uv run pytest`

Signed-off-by: Max R. Carrara <max@aequito.sh>
This commit is contained in:
Max R. Carrara 2025-03-06 01:32:47 +01:00
parent 588f8d065e
commit 15e01aae8c

6
tests/test_test.py Normal file
View file

@ -0,0 +1,6 @@
def foo(x):
return x + 1
def test_answer():
assert foo(3) == 4