Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for no_response_model_annotation_json_response_class (0.21 sec)

  1. tests/test_response_model_as_return_annotation.py

    def no_response_model_annotation_response_class() -> Response:
        return Response(content="Foo")
    
    
    @app.get("/no_response_model-annotation_json_response_class")
    def no_response_model_annotation_json_response_class() -> JSONResponse:
        return JSONResponse(content={"foo": "bar"})
    
    
    client = TestClient(app)
    
    
    def test_no_response_model_no_annotation_return_model():
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Aug 14 09:49:57 UTC 2023
    - 47.7K bytes
    - Viewed (0)
Back to top