Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for test_response_with_depends_default (0.16 seconds)

  1. tests/test_response_dependency.py

        client = TestClient(app)
        resp = client.get("/")
    
        assert resp.status_code == 200
        assert resp.json() == {"status": "ok"}
        assert resp.headers.get("X-Custom") == "modified"
    
    
    def test_response_with_depends_default():
        """Response type hint should work with Response = Depends(...)."""
        app = FastAPI()
    
        def modify_response(response: Response) -> Response:
            response.headers["X-Custom"] = "modified"
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 05 18:23:16 GMT 2026
    - 5.2K bytes
    - Click Count (0)
Back to Top