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.
23 lines
515 B
23 lines
515 B
from fastapi.testclient import TestClient
|
|
|
|
from .config import Settings
|
|
from .main import app, get_settings
|
|
|
|
client = TestClient(app)
|
|
|
|
|
|
def get_settings_override():
|
|
return Settings(admin_email="[email protected]")
|
|
|
|
|
|
app.dependency_overrides[get_settings] = get_settings_override
|
|
|
|
|
|
def test_app():
|
|
response = client.get("/info")
|
|
data = response.json()
|
|
assert data == {
|
|
"app_name": "Awesome API",
|
|
"admin_email": "[email protected]",
|
|
"items_per_user": 50,
|
|
}
|
|
|