1 changed files with 11 additions and 0 deletions
@ -0,0 +1,11 @@ |
|||||
|
from docs_src.middleware.tutorial002 import app |
||||
|
from fastapi.testclient import TestClient |
||||
|
|
||||
|
|
||||
|
def test_add_process_time_header_middleware(): |
||||
|
client = TestClient(app) |
||||
|
response = client.get("/") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"hello": "world"} |
||||
|
assert "X-Process-Time" in response.headers |
||||
|
assert len(response.headers["X-Process-Time"]) > 0 |
Loading…
Reference in new issue