1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix unit tests for PlayIterator changes regarding fact gathering

This commit is contained in:
James Cammarata 2015-09-03 14:25:43 -04:00
parent 4ac2bafc4b
commit b2cb3153f1

View file

@ -68,12 +68,16 @@ class TestPlayIterator(unittest.TestCase):
inventory.get_hosts.return_value = hosts inventory.get_hosts.return_value = hosts
inventory.filter_hosts.return_value = hosts inventory.filter_hosts.return_value = hosts
mock_var_manager = MagicMock()
mock_var_manager._fact_cache = dict()
play_context = PlayContext(play=p._entries[0]) play_context = PlayContext(play=p._entries[0])
itr = PlayIterator( itr = PlayIterator(
inventory=inventory, inventory=inventory,
play=p._entries[0], play=p._entries[0],
play_context=play_context, play_context=play_context,
variable_manager=mock_var_manager,
all_vars=dict(), all_vars=dict(),
) )