(app: Quart)
| 34 | |
| 35 | |
| 36 | async def test_template_render(app: Quart) -> None: |
| 37 | async with app.app_context(): |
| 38 | rendered = await render_template_string("{{ foo }}", foo="bar") |
| 39 | assert rendered == "bar" |
| 40 | |
| 41 | |
| 42 | async def test_default_template_context(app: Quart) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…