(app)
| 34 | |
| 35 | |
| 36 | def test_logger(app): |
| 37 | assert app.logger.name == "flask_test" |
| 38 | assert app.logger.level == logging.NOTSET |
| 39 | assert app.logger.handlers == [default_handler] |
| 40 | |
| 41 | |
| 42 | def test_logger_debug(app): |
nothing calls this directly
no outgoing calls
no test coverage detected