- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for test_invalid_simple_dict (0.21 sec)
-
tests/test_invalid_path_param.py
def test_invalid_simple_set(): with pytest.raises(AssertionError): app = FastAPI() @app.get("/items/{id}") def read_items(id: set): pass # pragma: no cover def test_invalid_simple_dict(): with pytest.raises(AssertionError): app = FastAPI() @app.get("/items/{id}") def read_items(id: dict):
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Jun 03 17:59:40 UTC 2019 - 1.7K bytes - Viewed (0) -
tests/test_invalid_sequence_param.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri May 13 23:38:22 UTC 2022 - 1.2K bytes - Viewed (0)