import httpx def test_get_hello(client: httpx.Client) -> None: response = client.get("/hello/") assert response.status_code == 200 assert response.json() == { "status": "ok", }