mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-02-04 07:51:50 +00:00
parent
f5c2c8b9a2
commit
255059f7b3
5 changed files with 16 additions and 17 deletions
|
|
@ -441,7 +441,7 @@ class TestPritunlApi:
|
|||
|
||||
for org in response:
|
||||
if org["id"] == org_id:
|
||||
org["user_count"] == org_user_count
|
||||
assert org["user_count"] == org_user_count
|
||||
|
||||
@pytest.mark.parametrize(
|
||||
"org_filters,org_expected",
|
||||
|
|
|
|||
|
|
@ -354,7 +354,7 @@ class TestPacman:
|
|||
|
||||
with pytest.raises(AnsibleExitJson) as e:
|
||||
P.run()
|
||||
self.mock_run_command.call_count == 0
|
||||
assert self.mock_run_command.call_count == 0
|
||||
out = e.value.args[0]
|
||||
assert "packages" not in out
|
||||
assert out["changed"]
|
||||
|
|
@ -494,7 +494,7 @@ class TestPacman:
|
|||
out = e.value.args[0]
|
||||
|
||||
if check_mode_value:
|
||||
self.mock_run_command.call_count == 0
|
||||
assert self.mock_run_command.call_count == 0
|
||||
|
||||
if run_command_data and "args" in run_command_data:
|
||||
self.mock_run_command.assert_called_with(mock.ANY, run_command_data["args"], check_rc=False)
|
||||
|
|
@ -672,7 +672,7 @@ class TestPacman:
|
|||
assert not out["changed"]
|
||||
assert "packages" in out
|
||||
assert "diff" not in out
|
||||
self.mock_run_command.call_count == 0
|
||||
assert self.mock_run_command.call_count == 0
|
||||
|
||||
@pytest.mark.parametrize(
|
||||
"module_args, expected_packages, package_list_out, run_command_data, raises",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue