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.
ansible/test/integration/targets/blockinfile/tasks/diff.yml

19 lines
354 B
YAML

- name: Create a test file
copy:
content: diff test
dest: "{{ output_dir_test }}/diff.txt"
- name: Add block to file with diff
blockinfile:
path: "{{ output_dir_test }}/diff.txt"
block: |
line 1
line 2
register: difftest
diff: yes
- name: Ensure diff was shown
assert:
that:
- difftest.diff | length > 0