pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
306 B
12 lines
306 B
import pytest
|
|
from httpx import AsyncClient
|
|
|
|
from .main import app
|
|
|
|
|
|
@pytest.mark.anyio
|
|
async def test_root():
|
|
async with AsyncClient(app=app, base_url="http://test") as ac:
|
|
response = await ac.get("/")
|
|
assert response.status_code == 200
|
|
assert response.json() == {"message": "Tomato"}
|
|
|