ansible/test/integration/targets/set_fact/incremental.yml
Brian Coca 2afb1090b1 allow incremental update for vars in loop for set_fact/include_vars (#38302)
* fix set_fact/include_vars looping

* tests for all behaviours affected

* add tests with injection off/on
2018-04-06 09:57:34 +10:00

19 lines
473 B
YAML

- name: test set_fact incremental https://github.com/ansible/ansible/issues/38271
hosts: testhost
gather_facts: no
tasks:
- name: Generate inline loop for set_fact
set_fact:
dig_list: "{{ dig_list + [ item ] }}"
loop:
- two
- three
- four
vars:
dig_list:
- one
- name: verify cumulative set fact worked
assert:
that:
- dig_list == ['one', 'two', 'three', 'four']