add tests

This commit is contained in:
Brian Rosner 2024-05-17 21:58:13 -06:00
parent 7e77121037
commit 9facd6dc9f
2 changed files with 12 additions and 0 deletions

9
tests/conftest.py Normal file
View File

@ -0,0 +1,9 @@
import pytest
from teufa.app import create_app
@pytest.fixture
def app():
app = create_app()
yield app

3
tests/test_app.py Normal file
View File

@ -0,0 +1,3 @@
def test_app(app):
assert app