2018-04-02 07:05:37 +00:00
|
|
|
- hosts: all
|
|
|
|
tasks:
|
2018-04-04 19:01:23 +00:00
|
|
|
- name: integration/runner__custom_binary_producing_json.yml
|
|
|
|
custom_binary_producing_json:
|
2018-04-02 07:05:37 +00:00
|
|
|
foo: true
|
2018-04-04 19:01:23 +00:00
|
|
|
with_sequence: start=1 end={{end|default(1)}}
|
|
|
|
register: out
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that: |
|
|
|
|
out.changed and
|
|
|
|
out.results[0].changed and
|
|
|
|
out.results[0].msg == 'Hello, world.'
|