Merge pull request #459 from dhozac/with_items-variable

Allow a variable in with_items
This commit is contained in:
Michael DeHaan
2012-06-13 19:18:51 -07:00
3 changed files with 23 additions and 22 deletions

View File

@@ -17,7 +17,7 @@ class TestUtils(unittest.TestCase):
}
}
res = ansible.utils.varLookup('data.who', vars)
res = ansible.utils._varLookup('data.who', vars)
assert sorted(res) == sorted(vars['data']['who'])