mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
28 lines
778 B
YAML
28 lines
778 B
YAML
|
---
|
||
|
- name: Setup test fixture
|
||
|
command: cp {{ role_path }}/fixtures/ansible-xml-beers.xml /tmp/ansible-xml-beers.xml
|
||
|
|
||
|
- name: Set child elements
|
||
|
xml:
|
||
|
path: /tmp/ansible-xml-beers.xml
|
||
|
xpath: /business/beers
|
||
|
set_children:
|
||
|
- beer: "Окское"
|
||
|
- beer: "Невское"
|
||
|
|
||
|
- name: Test expected result
|
||
|
command: diff -u {{ role_path }}/results/test-set-children-elements-unicode.xml /tmp/ansible-xml-beers.xml
|
||
|
|
||
|
- name: Set child elements
|
||
|
xml:
|
||
|
path: /tmp/ansible-xml-beers.xml
|
||
|
xpath: /business/beers
|
||
|
set_children:
|
||
|
- beer: "Окское"
|
||
|
- beer: "Невское"
|
||
|
register: set_children_again
|
||
|
|
||
|
- fail:
|
||
|
msg: "Setting children is not idempotent!"
|
||
|
when: set_children_again.changed
|