mirror of
https://github.com/fastapi/fastapi.git
synced 2026-02-14 08:11:10 -05:00
9 lines
241 B
Python
9 lines
241 B
Python
from fastapi.dependencies.utils import get_typed_annotation
|
|
|
|
|
|
def test_get_typed_annotation():
|
|
# For coverage
|
|
annotation = "None"
|
|
typed_annotation = get_typed_annotation(annotation, globals())
|
|
assert typed_annotation is None
|