diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 0000000..0161ddc --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,9 @@ +import pytest + +from teufa.app import create_app + + +@pytest.fixture +def app(): + app = create_app() + yield app diff --git a/tests/test_app.py b/tests/test_app.py new file mode 100644 index 0000000..c683353 --- /dev/null +++ b/tests/test_app.py @@ -0,0 +1,3 @@ + +def test_app(app): + assert app