encapsulate test function in the helper class (#7247)

This commit is contained in:
Alexei Znamensky 2023-09-13 00:24:10 +12:00 committed by GitHub
parent bdf8852e8d
commit 6e3a56ffce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 45 additions and 139 deletions

View file

@ -6,9 +6,7 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
import pytest
from .helper import CmdRunnerTestHelper, ModuleTestCase, RunCmdCall
from .helper import Helper, ModuleTestCase, RunCmdCall
from ansible_collections.community.general.plugins.modules import snap
@ -444,18 +442,6 @@ TEST_CASES = [
),
]
helper = CmdRunnerTestHelper.from_list(snap.main, TEST_CASES)
helper = Helper.from_list(snap.main, TEST_CASES)
patch_bin = helper.cmd_fixture
@pytest.mark.parametrize('patch_ansible_module, testcase',
helper.testcases_params, ids=helper.testcases_ids,
indirect=['patch_ansible_module'])
@pytest.mark.usefixtures('patch_ansible_module')
def test_module(mocker, capfd, patch_bin, testcase):
"""
Run unit tests for test cases listed in TEST_CASES
"""
with helper(testcase, mocker, capfd) as testcase_context:
testcase_context.run()
test_module = helper.test_module