"""infra routers unit tests.""" from fastapi.testclient import TestClient def test_hello(test_client: TestClient) -> None: response = test_client.get("/hello/") assert response.status_code == 200 assert response.json() == {"status": "ok"}