test_read_items_size_too_small() — fastapi Function Reference
Architecture documentation for the test_read_items_size_too_small() function in test_tutorial006.py from the fastapi codebase.
Entity Profile
Dependency Diagram
graph TD 2d8e78bf_6d7f_ede0_47d9_32434e4137a9["test_read_items_size_too_small()"] 17a0f069_68bc_2155_e93d_b485ba6efa92["test_tutorial006.py"] 2d8e78bf_6d7f_ede0_47d9_32434e4137a9 -->|defined in| 17a0f069_68bc_2155_e93d_b485ba6efa92 style 2d8e78bf_6d7f_ede0_47d9_32434e4137a9 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
tests/test_tutorial/test_path_params_numeric_validations/test_tutorial006.py lines 73–86
def test_read_items_size_too_small(client: TestClient):
response = client.get("/items/1?q=somequery&size=0.0")
assert response.status_code == 422, response.text
assert response.json() == {
"detail": [
{
"loc": ["query", "size"],
"input": "0.0",
"msg": "Input should be greater than 0",
"type": "greater_than",
"ctx": {"gt": 0.0},
}
]
}
Domain
Subdomains
Source
Frequently Asked Questions
What does test_read_items_size_too_small() do?
test_read_items_size_too_small() is a function in the fastapi codebase, defined in tests/test_tutorial/test_path_params_numeric_validations/test_tutorial006.py.
Where is test_read_items_size_too_small() defined?
test_read_items_size_too_small() is defined in tests/test_tutorial/test_path_params_numeric_validations/test_tutorial006.py at line 73.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free