(app_ctx)
| 1737 | |
| 1738 | |
| 1739 | def test_g_iteration_protocol(app_ctx): |
| 1740 | flask.g.foo = 23 |
| 1741 | flask.g.bar = 42 |
| 1742 | assert "foo" in flask.g |
| 1743 | assert "foos" not in flask.g |
| 1744 | assert sorted(flask.g) == ["bar", "foo"] |
| 1745 | |
| 1746 | |
| 1747 | def test_subdomain_basic_support(): |
nothing calls this directly
no outgoing calls
no test coverage detected