()
| 322 | |
| 323 | @app.route("/a") |
| 324 | async def a() -> WerkzeugResponse: |
| 325 | response = redirect("/b") |
| 326 | response.set_cookie("bar", "foo") |
| 327 | return response |
| 328 | |
| 329 | @app.route("/b") |
| 330 | async def echo() -> Response: |
nothing calls this directly
no test coverage detected