From 22f3aef4dc1f80b10fd873d0b63140042c461333 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Sun, 30 Sep 2012 20:49:16 -0400 Subject: [PATCH] remove test for private function that is no longer present --- test/TestUtils.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/test/TestUtils.py b/test/TestUtils.py index ae9baa0432..da9faa11f3 100644 --- a/test/TestUtils.py +++ b/test/TestUtils.py @@ -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