(app, client)
| 1660 | |
| 1661 | |
| 1662 | def test_nonascii_pathinfo(app, client): |
| 1663 | @app.route("/киртест") |
| 1664 | def index(): |
| 1665 | return "Hello World!" |
| 1666 | |
| 1667 | rv = client.get("/киртест") |
| 1668 | assert rv.data == b"Hello World!" |
| 1669 | |
| 1670 | |
| 1671 | def test_no_setup_after_first_request(app, client): |