(error, endpoint, values)
| 1359 | |
| 1360 | # Test a custom handler. |
| 1361 | def handler(error, endpoint, values): |
| 1362 | # Just a test. |
| 1363 | return "/test_handler/" |
| 1364 | |
| 1365 | app.url_build_error_handlers.append(handler) |
| 1366 | with app.test_request_context(): |
no outgoing calls
no test coverage detected