Exemplo n.º 1
0
 def test_expand_template_overwrite(self):
     self.assertEqual(generate.expand_template(
         1,
         YAML2,
         '{{ key }}',
         {'key': 'other'}
     ), 'other')
Exemplo n.º 2
0
 def test_expand_template_overwrite(self):
     self.assertEqual(
         generate.expand_template(1, YAML2, '{{ key }}', {'key': 'other'}),
         'other')
Exemplo n.º 3
0
 def test_expand_template(self):
     self.assertEqual(generate.expand_template(
         1,
         YAML2,
         '{% if step >= 1 %}a{% endif %}'), 'a')
Exemplo n.º 4
0
 def test_expand_template(self):
     self.assertEqual(
         generate.expand_template(1, YAML2,
                                  '{% if step >= 1 %}a{% endif %}'), 'a')