(self)
| 122 | self.assertEqual(template.generate(x=3), b"no") |
| 123 | |
| 124 | def test_if_empty_body(self): |
| 125 | template = Template(utf8("{% if True %}{% else %}{% end %}")) |
| 126 | self.assertEqual(template.generate(), b"") |
| 127 | |
| 128 | def test_try(self): |
| 129 | template = Template( |