kubevirt: Re-enable unit tests (#1070)

Fixes: #1064

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
pull/1080/head
Abhijeet Kasurde 2020-10-12 11:08:33 +05:30 committed by GitHub
parent 873f1fb7fd
commit f7656ac0d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View File

@ -3,6 +3,7 @@ __metaclass__ = type
import pytest
from ansible.module_utils.basic import AnsibleModule
from ansible_collections.community.general.tests.unit.compat.mock import MagicMock
from ansible_collections.community.kubernetes.plugins.module_utils.common import K8sAnsibleMixin
@ -52,9 +53,9 @@ def fail_json(*args, **kwargs):
@pytest.fixture()
def base_fixture(monkeypatch):
monkeypatch.setattr(
KubernetesRawModule, "exit_json", exit_json)
AnsibleModule, "exit_json", exit_json)
monkeypatch.setattr(
KubernetesRawModule, "fail_json", fail_json)
AnsibleModule, "fail_json", fail_json)
# Create mock methods in Resource directly, otherwise dyn client
# tries binding those to corresponding methods in DynamicClient
# (with partial()), which is more problematic to intercept