diff options
Diffstat (limited to 'test/integration/targets/gem/tasks/main.yml')
-rw-r--r-- | test/integration/targets/gem/tasks/main.yml | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/test/integration/targets/gem/tasks/main.yml b/test/integration/targets/gem/tasks/main.yml index 476e602634..adf76d7c33 100644 --- a/test/integration/targets/gem/tasks/main.yml +++ b/test/integration/targets/gem/tasks/main.yml @@ -23,18 +23,17 @@ shell: gem list | egrep '^gist ' register: uninstall failed_when: "uninstall.rc != 1" - + - name: install a gem gem: name=gist state=present register: gem_result - name: verify module output properties - assert: - that: + assert: + that: - "'name' in gem_result" - - "'changed' in gem_result" - - "'state' in gem_result" + - "'changed' in gem_result" + - "'state' in gem_result" - name: verify gist is installed - shell: gem list | egrep '^gist ' - + shell: gem list | egrep '^gist ' |