()
| 574 | def test_session_refresh_vary(app, client): |
| 575 | @app.get("/login") |
| 576 | def login(): |
| 577 | flask.session["user_id"] = 1 |
| 578 | flask.session.permanent = True |
| 579 | return "" |
| 580 | |
| 581 | @app.get("/ignored") |
| 582 | def ignored(): |
nothing calls this directly
no outgoing calls
no test coverage detected