()
| 19 | |
| 20 | |
| 21 | def test_widgets(): |
| 22 | template = get_template("example.html.j2") |
| 23 | assert isinstance(template, jinja2.Template) |
| 24 | rendered = template.render(foo="bar") |
| 25 | assert "Hello bar" in rendered |
| 26 | |
| 27 | |
| 28 | def test_environment(): |
nothing calls this directly
no test coverage detected