()
| 54 | def test_wsgi_errors_stream(app, client): |
| 55 | @app.route("/") |
| 56 | def index(): |
| 57 | app.logger.error("test") |
| 58 | return "" |
| 59 | |
| 60 | stream = StringIO() |
| 61 | client.get("/", errors_stream=stream) |
nothing calls this directly
no outgoing calls
no test coverage detected