Coverage for tests / test_dependencies_utils.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.13.3, created at 2026-04-06 01:24 +0000

1from fastapi.dependencies.utils import get_typed_annotation 1efgh

2 

3 

4def test_get_typed_annotation(): 1efgh

5 # For coverage 

6 annotation = "None" 1abcd

7 typed_annotation = get_typed_annotation(annotation, globals()) 1abcd

8 assert typed_annotation is None 1abcd