summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMichael DeHaan <michael.dehaan@gmail.com>2012-10-01 02:49:16 +0200
committerMichael DeHaan <michael.dehaan@gmail.com>2012-10-01 02:49:16 +0200
commit22f3aef4dc1f80b10fd873d0b63140042c461333 (patch)
tree1a7762a3dd6a8b8db1b7873b75f448a50c1e3ed3 /test
parentAbort a play when there are no more hosts in it. (diff)
downloadansible-22f3aef4dc1f80b10fd873d0b63140042c461333.tar.xz
ansible-22f3aef4dc1f80b10fd873d0b63140042c461333.zip
remove test for private function that is no longer present
Diffstat (limited to 'test')
-rw-r--r--test/TestUtils.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/TestUtils.py b/test/TestUtils.py
index ae9baa0432..da9faa11f3 100644
--- a/test/TestUtils.py
+++ b/test/TestUtils.py
@@ -7,20 +7,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
def test_varReplace_simple(self):