Allow camelCase variables in varreplace.

This commit is contained in:
Jeroen Hoekx 2012-05-11 14:14:53 +02:00
parent dab50574e0
commit dc60f2d844
2 changed files with 11 additions and 1 deletions

View file

@ -45,6 +45,16 @@ class TestUtils(unittest.TestCase):
assert res == 'hello world'
def test_varReplace_caps(self):
template = 'hello $whoVar'
vars = {
'whoVar': 'world',
}
res = ansible.utils.varReplace(template, vars)
print res
assert res == 'hello world'
def test_varReplace_middle(self):
template = 'hello $who!'
vars = {