(app)
| 36 | |
| 37 | |
| 38 | def test_app_context_provides_current_app(app): |
| 39 | with app.app_context(): |
| 40 | assert flask.current_app._get_current_object() is app |
| 41 | assert not flask.current_app |
| 42 | |
| 43 | |
| 44 | def test_app_tearing_down(app): |
nothing calls this directly
no test coverage detected
searching dependent graphs…