Fix the basic templating system such that when the template ends in '$', life continues as normal.

This commit is contained in:
Michael DeHaan 2012-10-20 10:53:34 -04:00
commit 6fa1a49037
4 changed files with 11 additions and 7 deletions

View file

@ -19,6 +19,12 @@ class TestUtils(unittest.TestCase):
assert res == 'hello world'
def test_varReplace_trailing_dollar(self):
template = '$what $who $'
vars = dict(what='hello', who='world')
res = ansible.utils.varReplace(template, vars)
assert res == 'hello world $'
def test_varReplace_multiple(self):
template = '$what $who'
vars = {