mirror of https://github.com/ansible/ansible.git
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.
19 lines
354 B
YAML
19 lines
354 B
YAML
4 years ago
|
- 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
|