|
|
@ -1,6 +1,7 @@ |
|
|
|
from docs_src.middleware.tutorial001 import app |
|
|
|
from fastapi.testclient import TestClient |
|
|
|
|
|
|
|
from docs_src.middleware.tutorial001 import app |
|
|
|
|
|
|
|
|
|
|
|
def test_add_process_time_header_middleware(): |
|
|
|
client = TestClient(app) |
|
|
@ -9,4 +10,3 @@ def test_add_process_time_header_middleware(): |
|
|
|
assert response.json() == {"hello": "world"} |
|
|
|
assert "X-Process-Time" in response.headers |
|
|
|
assert len(response.headers["X-Process-Time"]) > 0 |
|
|
|
|
|
|
|