You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mitogen/tests/ansible/integration/runner/custom_bash_want_json_modul...

17 lines
447 B
YAML

- name: integration/runner/custom_bash_want_json_module.yml
hosts: test-targets
tasks:
- custom_bash_want_json_module:
foo: true
with_sequence: start=1 end={{end|default(1)}}
register: out
- assert:
that: |
(not out.changed) and
(not out.results[0].changed) and
out.results[0].msg == 'Here is my input'
fail_msg: out={{out}}
tags:
- custom_bash_want_json_module