Browse Source
Co-authored-by: Sofie Van Landeghem <[email protected]> Co-authored-by: svlandeg <[email protected]>pull/13432/head
committed by
GitHub
2 changed files with 26 additions and 4 deletions
@ -0,0 +1,22 @@ |
|||
from inspect import signature |
|||
|
|||
from fastapi.dependencies.utils import ParamDetails, analyze_param |
|||
from pydantic import Field |
|||
from typing_extensions import Annotated |
|||
|
|||
from .utils import needs_pydanticv2 |
|||
|
|||
|
|||
def func(user: Annotated[int, Field(strict=True)]): ... |
|||
|
|||
|
|||
@needs_pydanticv2 |
|||
def test_analyze_param(): |
|||
result = analyze_param( |
|||
param_name="user", |
|||
annotation=signature(func).parameters["user"].annotation, |
|||
value=object(), |
|||
is_path_param=False, |
|||
) |
|||
assert isinstance(result, ParamDetails) |
|||
assert result.field.field_info.annotation is int |
Loading…
Reference in new issue