(path, quiet=False)
| 472 | return Response(repr((endpoint, values))) |
| 473 | |
| 474 | def dispatch(path, quiet=False): |
| 475 | return Response.force_type( |
| 476 | adapter.dispatch(view_func, path, catch_http_exceptions=quiet), env |
| 477 | ) |
| 478 | |
| 479 | assert dispatch("/").data == b"('root', {})" |
| 480 | assert dispatch("/foo").status_code == 308 |
no test coverage detected