Add template test

This commit is contained in:
Andros Fenollosa 2022-11-09 16:49:31 +01:00
parent 68e043a309
commit 0b55113b16
2 changed files with 8 additions and 0 deletions

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
pytest===7.2.0

7
test/test_save.py Normal file
View File

@ -0,0 +1,7 @@
# content of test_sample.py
def inc(x):
return x + 1
def test_answer():
assert inc(3) == 5