(app_ctx)
| 1729 | |
| 1730 | |
| 1731 | def test_get_method_on_g(app_ctx): |
| 1732 | assert flask.g.get("x") is None |
| 1733 | assert flask.g.get("x", 11) == 11 |
| 1734 | flask.g.x = 42 |
| 1735 | assert flask.g.get("x") == 42 |
| 1736 | assert flask.g.x == 42 |
| 1737 | |
| 1738 | |
| 1739 | def test_g_iteration_protocol(app_ctx): |