(request)
| 29 | def test_vhosts_with_list(app): |
| 30 | @app.route("/", host=["hello.com", "world.com"]) |
| 31 | async def handler(request): |
| 32 | return text("Hello, world!") |
| 33 | |
| 34 | headers = {"Host": "hello.com"} |
| 35 | request, response = app.test_client.get("/", headers=headers) |
nothing calls this directly
no test coverage detected
searching dependent graphs…