Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for test_hidden_path (0.48 sec)

  1. tests/test_param_include_in_schema.py

        client = TestClient(app)
        response = client.get(path, headers=headers)
        assert response.status_code == expected_status
        assert response.json() == expected_response
    
    
    def test_hidden_path():
        client = TestClient(app)
        response = client.get("/hidden_path/hidden_path")
        assert response.status_code == 200
        assert response.json() == {"hidden_path": "hidden_path"}
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 26 16:56:53 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top