(self, env)
| 103 | assert expr(foo=42) == 84 |
| 104 | |
| 105 | def test_template_passthrough(self, env): |
| 106 | t = Template("Content") |
| 107 | assert env.get_template(t) is t |
| 108 | assert env.select_template([t]) is t |
| 109 | assert env.get_or_select_template([t]) is t |
| 110 | assert env.get_or_select_template(t) is t |
| 111 | |
| 112 | def test_get_template_undefined(self, env): |
| 113 | """Passing Undefined to get/select_template raises an |
nothing calls this directly
no test coverage detected