remove test for private function that is no longer present

pull/1170/head
Michael DeHaan 12 years ago
parent 19b78cedc8
commit 22f3aef4dc

@ -6,20 +6,6 @@ import ansible.utils
class TestUtils(unittest.TestCase):
#####################################
### varLookup function tests
def test_varLookup_list(self):
vars = {
'data': {
'who': ['joe', 'jack', 'jeff']
}
}
res = ansible.utils.varLookup('${data.who}', vars)
assert sorted(res) == sorted(vars['data']['who'])
#####################################
### varReplace function tests

Loading…
Cancel
Save