Make no_engine the default templating action.

This commit is contained in:
Jeroen Hoekx 2012-05-09 16:13:20 +02:00
commit 2bbc05185e
3 changed files with 4 additions and 4 deletions

View file

@ -140,7 +140,7 @@ class TestUtils(unittest.TestCase):
'who': 'world',
}
res = ansible.utils.template(template, vars, {})
res = ansible.utils.template(template, vars, {}, no_engine=False)
assert res == 'hello world'
@ -150,6 +150,6 @@ class TestUtils(unittest.TestCase):
'who': 'world',
}
res = ansible.utils.template(template, vars, {})
res = ansible.utils.template(template, vars, {}, no_engine=False)
assert res == 'hello world\n'