Loading test/unit/webapps/api/test_cbv.py +7 −3 Original line number Diff line number Diff line Loading @@ -70,12 +70,14 @@ def test_method_order_preserved() -> None: app = FastAPI() app.include_router(router) client = TestClient(app) assert TestClient(app).get("/test").json() == 1 assert TestClient(app).get("/other").json() == 2 assert client.get("/test").json() == 1 assert client.get("/other").json() == 2 def test_multiple_decorators() -> None: app = FastAPI() router = APIRouter() @cbv(router) Loading @@ -90,7 +92,9 @@ def test_multiple_decorators() -> None: return {"item_query": item_query} return [] client = TestClient(router) app = FastAPI() app.include_router(router) client = TestClient(app) assert client.get("/items").json() == [] assert client.get("/items/1").json() == {"item_path": "1"} Loading Loading
test/unit/webapps/api/test_cbv.py +7 −3 Original line number Diff line number Diff line Loading @@ -70,12 +70,14 @@ def test_method_order_preserved() -> None: app = FastAPI() app.include_router(router) client = TestClient(app) assert TestClient(app).get("/test").json() == 1 assert TestClient(app).get("/other").json() == 2 assert client.get("/test").json() == 1 assert client.get("/other").json() == 2 def test_multiple_decorators() -> None: app = FastAPI() router = APIRouter() @cbv(router) Loading @@ -90,7 +92,9 @@ def test_multiple_decorators() -> None: return {"item_query": item_query} return [] client = TestClient(router) app = FastAPI() app.include_router(router) client = TestClient(app) assert client.get("/items").json() == [] assert client.get("/items/1").json() == {"item_path": "1"} Loading