(environ, start_response)
| 630 | |
| 631 | def test_path_info_script_name_unquoting(): |
| 632 | def test_app(environ, start_response): |
| 633 | start_response("200 OK", [("Content-Type", "text/plain")]) |
| 634 | return [f"{environ['PATH_INFO']}\n{environ['SCRIPT_NAME']}"] |
| 635 | |
| 636 | c = Client(test_app) |
| 637 | resp = c.get("/foo%40bar") |
nothing calls this directly
no test coverage detected