Coverage for tests / test_dependencies_utils.py: 100%
5 statements
« prev ^ index » next coverage.py v7.13.3, created at 2026-02-12 18:15 +0000
« prev ^ index » next coverage.py v7.13.3, created at 2026-02-12 18:15 +0000
1from fastapi.dependencies.utils import get_typed_annotation 1defg
4def test_get_typed_annotation(): 1defg
5 # For coverage
6 annotation = "None" 1abc
7 typed_annotation = get_typed_annotation(annotation, globals()) 1abc
8 assert typed_annotation is None 1abc