(path, async_app)
| 89 | |
| 90 | @pytest.mark.parametrize("path", ["/error", "/bp/error"]) |
| 91 | def test_async_error_handler(path, async_app): |
| 92 | test_client = async_app.test_client() |
| 93 | response = test_client.get(path) |
| 94 | assert response.status_code == 412 |
| 95 | |
| 96 | |
| 97 | def test_async_before_after_request(): |
nothing calls this directly
no test coverage detected