- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for test_single_form_field (0.06 sec)
-
tests/test_forms_single_param.py
from fastapi.testclient import TestClient app = FastAPI() @app.post("/form/") def post_form(username: Annotated[str, Form()]): return username client = TestClient(app) def test_single_form_field(): response = client.post("/form/", data={"username": "Rick"}) assert response.status_code == 200, response.text assert response.json() == "Rick" def test_openapi_schema():
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 21:25:59 UTC 2025 - 3.5K bytes - Viewed (0)