(app)
| 40 | |
| 41 | |
| 42 | def test_logger_debug(app): |
| 43 | app.debug = True |
| 44 | assert app.logger.level == logging.DEBUG |
| 45 | assert app.logger.handlers == [default_handler] |
| 46 | |
| 47 | |
| 48 | def test_existing_handler(app): |
nothing calls this directly
no outgoing calls
no test coverage detected