(self)
| 78 | ) |
| 79 | |
| 80 | def test_unicode_template(self): |
| 81 | template = Template(utf8("\u00e9")) |
| 82 | self.assertEqual(template.generate(), utf8("\u00e9")) |
| 83 | |
| 84 | def test_unicode_literal_expression(self): |
| 85 | # Unicode literals should be usable in templates. Note that this |