Spaces:
Runtime error
Runtime error
File size: 255 Bytes
66340f1 |
1 2 3 4 5 6 7 8 9 10 |
from httpx import AsyncClient
from app.core.config import settings
async def test_hello_world(client: AsyncClient) -> None:
resp = await client.get(f"{settings.API_PATH}/hello-world")
data = resp.json()
assert data["msg"] == "Hello world!"
|