Michael Merickel
2018-10-26 035f6cf8238211d097c991677fde6b5bc046a57b
tests/test_scaffolds/test_template.py
@@ -46,23 +46,23 @@
    def test_render_template_with_escaped_double_braces(self):
        inst = self._makeOne()
        result = inst.render_template(
            '{{a}} {{b}} \{\{a\}\} \{\{c\}\}', {'a': '1', 'b': '2'}
            '{{a}} {{b}} \\{\\{a\\}\\} \\{\\{c\\}\\}', {'a': '1', 'b': '2'}
        )
        self.assertEqual(result, bytes_('1 2 {{a}} {{c}}'))
    def test_render_template_with_breaking_escaped_braces(self):
        inst = self._makeOne()
        result = inst.render_template(
            '{{a}} {{b}} \{\{a\} \{b\}\}', {'a': '1', 'b': '2'}
            '{{a}} {{b}} \\{\\{a\\} \\{b\\}\\}', {'a': '1', 'b': '2'}
        )
        self.assertEqual(result, bytes_('1 2 \{\{a\} \{b\}\}'))
        self.assertEqual(result, bytes_('1 2 \\{\\{a\\} \\{b\\}\\}'))
    def test_render_template_with_escaped_single_braces(self):
        inst = self._makeOne()
        result = inst.render_template(
            '{{a}} {{b}} \{a\} \{b', {'a': '1', 'b': '2'}
            '{{a}} {{b}} \\{a\\} \\{b', {'a': '1', 'b': '2'}
        )
        self.assertEqual(result, bytes_('1 2 \{a\} \{b'))
        self.assertEqual(result, bytes_('1 2 \\{a\\} \\{b'))
    def test_module_dir(self):
        import sys