Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for expected_title (0.27 seconds)

  1. tests/test_request_params/test_path/test_required_str.py

            ),
        ],
    )
    def test_schema(path: str, expected_name: str, expected_title: str):
        assert app.openapi()["paths"][path]["get"]["parameters"] == snapshot(
            [
                {
                    "required": True,
                    "schema": {"title": Is(expected_title), "type": "string"},
                    "name": Is(expected_name),
                    "in": "path",
                }
            ]
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Feb 09 15:35:43 GMT 2026
    - 2.4K bytes
    - Click Count (0)
Back to Top