Added automated test coverage

This commit is contained in:
Henrik Corneliussen
2026-05-08 19:05:56 +02:00
parent 18a20c77a7
commit a1c4bfb693
3 changed files with 17 additions and 6 deletions

11
tests/test_app.py Normal file
View File

@@ -0,0 +1,11 @@
from app import app
def test_basic():
assert True
def test_homepage():
client = app.test_client()
response = client.get("/")
assert response.status_code == 200