diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3ce1d24 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.pytest_cache diff --git a/pricedb_pull/test/__init__.py b/pricedb_pull/test/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/pricedb_pull/test/test_app.py b/pricedb_pull/test/test_app.py new file mode 100644 index 0000000..6d32b89 --- /dev/null +++ b/pricedb_pull/test/test_app.py @@ -0,0 +1,5 @@ +def func(x): + return x + 1 + +def test_answer(): + assert func(4) == 5