2018-04-02 07:05:37 +00:00
|
|
|
- hosts: all
|
|
|
|
tasks:
|
2018-04-04 19:01:23 +00:00
|
|
|
- name: integration/runner__custom_binary_single_null.yml
|
|
|
|
custom_binary_single_null:
|
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)}}
|
2018-04-02 07:05:37 +00:00
|
|
|
ignore_errors: true
|
2018-04-04 19:01:23 +00:00
|
|
|
register: out
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that: |
|
|
|
|
out.failed and
|
|
|
|
out.results[0].failed and
|
|
|
|
out.results[0].msg == 'MODULE FAILURE' and
|
|
|
|
out.results[0].rc == 126
|