Commit 53cd96be by James Cammarata

Updating unit tests to account for new magic variable 'vars'

parent 76c5be3a
......@@ -41,6 +41,8 @@ class TestVariableManager(unittest.TestCase):
vars = v.get_vars(loader=fake_loader, use_cache=False)
if 'omit' in vars:
del vars['omit']
if 'vars' in vars:
del vars['vars']
self.assertEqual(vars, dict(playbook_dir='.'))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment