()
| 315 | |
| 316 | |
| 317 | def test_normal_environ_completes(): |
| 318 | app = flask.Flask(__name__) |
| 319 | |
| 320 | @app.route("/") |
| 321 | def index(): |
| 322 | return "Hello World!" |
| 323 | |
| 324 | response = app.test_client().get("/", headers={"host": "xn--on-0ia.com"}) |
| 325 | assert response.status_code == 200 |
nothing calls this directly
no test coverage detected