Change $FILE{} and $PIPE{} to $FILE() and $PIPE()

pull/1060/head
Michael DeHaan 12 years ago
parent 57f6ad458a
commit b2af95e4a6

@ -220,7 +220,7 @@ def varReplace(raw, vars):
return ''.join(done)
_FILEPIPECRE = re.compile(r"\$(?P<special>FILE|PIPE)\{([^\}]+)\}")
_FILEPIPECRE = re.compile(r"\$(?P<special>FILE|PIPE)\(([^\}]+)\)")
def varReplaceFilesAndPipes(basedir, raw):
done = [] # Completed chunks to return

@ -214,14 +214,14 @@ class TestUtils(unittest.TestCase):
assert res == u'hello oh great one'
def test_varReplace_include(self):
template = 'hello $FILE{world}'
template = 'hello $FILE(world)'
res = ansible.utils.template("test", template, {})
assert res == u'hello world\n'
def test_varReplace_include_script(self):
template = 'hello $PIPE{echo world}'
template = 'hello $PIPE(echo world)'
res = ansible.utils.template("test", template, {})

Loading…
Cancel
Save