removed invocation from tests as it is only available on very very verbose mode

This commit is contained in:
Brian Coca
2015-10-31 13:00:53 -04:00
parent 7368030651
commit c267e1906e
4 changed files with 9 additions and 16 deletions

View File

@@ -30,7 +30,7 @@
- name: verify uninstallation of sos
assert:
that:
that:
- "yum_result.rc == 0"
- "rpm_result.rc == 1"
@@ -41,7 +41,7 @@
- name: verify no change on re-uninstall
assert:
that:
that:
- "not yum_result.changed"
# INSTALL
@@ -59,7 +59,7 @@
- name: verify installation of sos
assert:
that:
that:
- "yum_result.rc == 0"
- "yum_result.changed"
- "rpm_result.rc == 0"
@@ -67,7 +67,6 @@
- name: verify yum module outputs
assert:
that:
- "'invocation' in yum_result"
- "'changed' in yum_result"
- "'msg' in yum_result"
- "'rc' in yum_result"
@@ -80,9 +79,9 @@
- name: verify no change on second install
assert:
that:
that:
- "not yum_result.changed"
# Multiple packages
- name: uninstall sos and sharutils
yum: name=sos,sharutils state=removed