mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
removed invocation from tests as it is only available on very very verbose mode
This commit is contained in:
parent
7368030651
commit
c267e1906e
4 changed files with 9 additions and 16 deletions
|
@ -63,7 +63,6 @@
|
||||||
- name: verify apt module outputs
|
- name: verify apt module outputs
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- "'invocation' in apt_result"
|
|
||||||
- "'changed' in apt_result"
|
- "'changed' in apt_result"
|
||||||
- "'stderr' in apt_result"
|
- "'stderr' in apt_result"
|
||||||
- "'stdout' in apt_result"
|
- "'stdout' in apt_result"
|
||||||
|
|
|
@ -162,7 +162,6 @@
|
||||||
- name: assert the task with variable module name ran
|
- name: assert the task with variable module name ran
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- result.invocation.module_name == "debug"
|
|
||||||
- result.msg == "this should be debugged"
|
- result.msg == "this should be debugged"
|
||||||
|
|
||||||
- name: test conditional includes
|
- name: test conditional includes
|
||||||
|
|
|
@ -41,15 +41,11 @@
|
||||||
# FIXME: the before/after logic here should be fixed to make them hashes, see GitHub 6078
|
# FIXME: the before/after logic here should be fixed to make them hashes, see GitHub 6078
|
||||||
# looks like this: {
|
# looks like this: {
|
||||||
# "after": [
|
# "after": [
|
||||||
# "Revision: 9",
|
# "Revision: 9",
|
||||||
# "URL: https://github.com/jimi-c/test_role"
|
# "URL: https://github.com/jimi-c/test_role"
|
||||||
# ],
|
# ],
|
||||||
# "before": null,
|
# "before": null,
|
||||||
# "changed": true,
|
# "changed": true,
|
||||||
# "invocation": {
|
|
||||||
# "module_args": "repo=https://github.com/jimi-c/test_role dest=~/ansible_testing/svn",
|
|
||||||
# "module_name": "subversion"
|
|
||||||
# },
|
|
||||||
# "item": ""
|
# "item": ""
|
||||||
# }
|
# }
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
|
|
||||||
- name: verify uninstallation of sos
|
- name: verify uninstallation of sos
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- "yum_result.rc == 0"
|
- "yum_result.rc == 0"
|
||||||
- "rpm_result.rc == 1"
|
- "rpm_result.rc == 1"
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@
|
||||||
|
|
||||||
- name: verify no change on re-uninstall
|
- name: verify no change on re-uninstall
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- "not yum_result.changed"
|
- "not yum_result.changed"
|
||||||
|
|
||||||
# INSTALL
|
# INSTALL
|
||||||
|
@ -59,7 +59,7 @@
|
||||||
|
|
||||||
- name: verify installation of sos
|
- name: verify installation of sos
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- "yum_result.rc == 0"
|
- "yum_result.rc == 0"
|
||||||
- "yum_result.changed"
|
- "yum_result.changed"
|
||||||
- "rpm_result.rc == 0"
|
- "rpm_result.rc == 0"
|
||||||
|
@ -67,7 +67,6 @@
|
||||||
- name: verify yum module outputs
|
- name: verify yum module outputs
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- "'invocation' in yum_result"
|
|
||||||
- "'changed' in yum_result"
|
- "'changed' in yum_result"
|
||||||
- "'msg' in yum_result"
|
- "'msg' in yum_result"
|
||||||
- "'rc' in yum_result"
|
- "'rc' in yum_result"
|
||||||
|
@ -80,9 +79,9 @@
|
||||||
|
|
||||||
- name: verify no change on second install
|
- name: verify no change on second install
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- "not yum_result.changed"
|
- "not yum_result.changed"
|
||||||
|
|
||||||
# Multiple packages
|
# Multiple packages
|
||||||
- name: uninstall sos and sharutils
|
- name: uninstall sos and sharutils
|
||||||
yum: name=sos,sharutils state=removed
|
yum: name=sos,sharutils state=removed
|
||||||
|
|
Loading…
Reference in a new issue