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.
15 lines
395 B
YAML
15 lines
395 B
YAML
7 years ago
|
- hosts: all
|
||
7 years ago
|
any_errors_fatal: true
|
||
7 years ago
|
tasks:
|
||
7 years ago
|
- name: integration/runner__custom_bash_want_json_module.yml
|
||
|
custom_bash_want_json_module:
|
||
7 years ago
|
foo: true
|
||
7 years ago
|
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'
|