Ejemplo n.º 1
0
def test_app_ctx_globals_get() -> None:
    g = _AppCtxGlobals()
    g.foo = 'bar'  # type: ignore
    assert g.get('foo') == 'bar'
    assert g.get('bar', 'something') == 'something'
Ejemplo n.º 2
0
def test_app_ctx_globals_get() -> None:
    g = _AppCtxGlobals()
    g.foo = "bar"  # type: ignore
    assert g.get("foo") == "bar"
    assert g.get("bar", "something") == "something"