17 lines
493 B
YAML
17 lines
493 B
YAML
---
|
|
- name: Setup test fixture
|
|
copy:
|
|
src: '{{ role_path }}/fixtures/ansible-xml-beers.xml'
|
|
dest: /tmp/ansible-xml-beers.xml
|
|
|
|
- name: Set '/business/rating/@subjective' to 'нет'
|
|
xml:
|
|
path: /tmp/ansible-xml-beers.xml
|
|
xpath: /business/rating
|
|
attribute: subjective
|
|
value: "нет"
|
|
|
|
- name: Test expected result
|
|
command: diff -u {{ role_path }}/results/test-set-attribute-value-unicode.xml /tmp/ansible-xml-beers.xml
|
|
changed_when: False
|