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.
20 lines
488 B
20 lines
488 B
from pytest import MonkeyPatch
|
|
|
|
from ...utils import needs_pydanticv2
|
|
|
|
|
|
@needs_pydanticv2
|
|
def test_settings(monkeypatch: MonkeyPatch):
|
|
from docs_src.settings.app02 import main
|
|
|
|
monkeypatch.setenv("ADMIN_EMAIL", "[email protected]")
|
|
settings = main.get_settings()
|
|
assert settings.app_name == "Awesome API"
|
|
assert settings.items_per_user == 50
|
|
|
|
|
|
@needs_pydanticv2
|
|
def test_override_settings():
|
|
from docs_src.settings.app02 import test_main
|
|
|
|
test_main.test_app()
|
|
|