()
| 374 | def test_session_secret_key_fallbacks(app, client) -> None: |
| 375 | @app.post("/") |
| 376 | def set_session() -> str: |
| 377 | flask.session["a"] = 1 |
| 378 | return "" |
| 379 | |
| 380 | @app.get("/") |
| 381 | def get_session() -> dict[str, t.Any]: |
nothing calls this directly
no outgoing calls
no test coverage detected