(app)
| 191 | |
| 192 | |
| 193 | def test_session_transaction_needs_cookies(app): |
| 194 | c = app.test_client(use_cookies=False) |
| 195 | |
| 196 | with pytest.raises(TypeError, match="Cookies are disabled."): |
| 197 | with c.session_transaction(): |
| 198 | pass |
| 199 | |
| 200 | |
| 201 | def test_test_client_context_binding(app, client): |
nothing calls this directly
no test coverage detected