()
| 112 | |
| 113 | |
| 114 | async def test_has_app_context() -> None: |
| 115 | async with AppContext(Quart(__name__)): |
| 116 | assert has_app_context() is True |
| 117 | assert has_app_context() is False |
| 118 | |
| 119 | |
| 120 | async def test_copy_current_app_context() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…