MAESTRO: scaffold backend fastapi app

This commit is contained in:
Mariusz Banach
2026-02-17 22:50:34 +01:00
parent 7a3b958904
commit 9f58c3218c
11 changed files with 140 additions and 0 deletions

View File

@@ -0,0 +1 @@
"""Backend tests package."""

Binary file not shown.

View File

@@ -0,0 +1,12 @@
from fastapi.testclient import TestClient
from app.main import app
client = TestClient(app)
def test_root_returns_ok() -> None:
response = client.get("/")
assert response.status_code == 200
assert response.json() == {"status": "ok"}