(self, env)
| 76 | |
| 77 | class TestInheritance: |
| 78 | def test_layout(self, env): |
| 79 | tmpl = env.get_template("layout") |
| 80 | assert tmpl.render() == ( |
| 81 | "|block 1 from layout|block 2 from layout|nested block 4 from layout|" |
| 82 | ) |
| 83 | |
| 84 | def test_level1(self, env): |
| 85 | tmpl = env.get_template("level1") |
nothing calls this directly
no test coverage detected