Add tests of iterative templating
This commit is contained in:
parent
545b4b63d8
commit
682e728ebf
1 changed files with 11 additions and 0 deletions
|
@ -236,6 +236,17 @@ class TestUtils(unittest.TestCase):
|
|||
|
||||
assert res == u'hello wórld'
|
||||
|
||||
def test_template_varReplace_iterated(self):
|
||||
template = 'hello $who'
|
||||
vars = {
|
||||
'who': 'oh great $person',
|
||||
'person': 'one',
|
||||
}
|
||||
|
||||
res = ansible.utils.template(template, vars)
|
||||
|
||||
assert res == u'hello oh great one'
|
||||
|
||||
#####################################
|
||||
### key-value parsing
|
||||
|
||||
|
|
Loading…
Reference in a new issue