Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for test_hidden_query (0.07 sec)

  1. tests/test_param_include_in_schema.py

                {"hidden_query": None},
            ),
            (
                "/hidden_query?hidden_query=somevalue",
                200,
                {"hidden_query": "somevalue"},
            ),
        ],
    )
    def test_hidden_query(path, expected_status, expected_response):
        client = TestClient(app)
        response = client.get(path)
        assert response.status_code == expected_status
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Mar 26 16:56:53 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top