Browse Source

Fix instantiation of action plugin in test fixture

In Ansible 2.3+, the base action plugin class' run method depends
on accessing attributes (check_mode) of its play_context.

In older versions play_context was not involved in run, and thus None
was passed in.
Rodolfo Carvalho 8 years ago
parent
commit
590d6c1252
1 changed files with 3 additions and 1 deletions
  1. 3 1
      roles/openshift_health_checker/test/action_plugin_test.py

+ 3 - 1
roles/openshift_health_checker/test/action_plugin_test.py

@@ -1,5 +1,7 @@
 import pytest
 
+from ansible.playbook.play_context import PlayContext
+
 from openshift_health_check import ActionModule, resolve_checks
 from openshift_checks import OpenShiftCheckException
 
@@ -34,7 +36,7 @@ def fake_check(name='fake_check', tags=None, is_active=True, run_return=None, ru
 @pytest.fixture
 def plugin():
     task = FakeTask('openshift_health_check', {'checks': ['fake_check']})
-    plugin = ActionModule(task, None, None, None, None, None)
+    plugin = ActionModule(task, None, PlayContext(), None, None, None)
     return plugin