committed by
GitHub
5 changed files with 46 additions and 0 deletions
@ -0,0 +1,4 @@ |
|||
import sys |
|||
|
|||
if sys.version_info < (3, 12): |
|||
collect_ignore_glob = ["*_py312.py"] |
@ -0,0 +1,29 @@ |
|||
from __future__ import annotations |
|||
|
|||
from typing import Annotated |
|||
|
|||
from fastapi import Depends, FastAPI |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from .utils import needs_py312 |
|||
|
|||
|
|||
async def some_value() -> int: |
|||
return 123 |
|||
|
|||
|
|||
type DependedValue = Annotated[int, Depends(some_value)] |
|||
|
|||
|
|||
@needs_py312 |
|||
def test_pep695_type_dependencies(): |
|||
app = FastAPI() |
|||
|
|||
@app.get("/") |
|||
async def get_with_dep(value: DependedValue) -> str: # noqa |
|||
return f"value: {value}" |
|||
|
|||
client = TestClient(app) |
|||
response = client.get("/") |
|||
assert response.status_code == 200 |
|||
assert response.text == '"value: 123"' |
Loading…
Reference in new issue