Files
mgeeky-decode-spam-headers/backend/tests/test_main.py
2026-02-17 22:50:34 +01:00

13 lines
250 B
Python

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"}