(app, req_ctx)
| 589 | |
| 590 | |
| 591 | def test_flashes(app, req_ctx): |
| 592 | assert not flask.session.modified |
| 593 | flask.flash("Zap") |
| 594 | flask.session.modified = False |
| 595 | flask.flash("Zip") |
| 596 | assert flask.session.modified |
| 597 | assert list(flask.get_flashed_messages()) == ["Zap", "Zip"] |
| 598 | |
| 599 | |
| 600 | def test_extended_flashing(app): |
nothing calls this directly
no outgoing calls
no test coverage detected