ansible/test/integration/targets/xml/tasks/test-count-unicode.yml
Dag Wieers 2634ef955a xml module: Better change detection, improved tests (#28460)
This PR includes:

- Improvements to change-detection by comparing 2 objectified XML trees
- Implement better integration tests by comparing 2 files using copy
2017-08-25 02:07:58 +02:00

19 lines
411 B
YAML

---
- name: Setup test fixture
copy:
src: fixtures/ansible-xml-beers-unicode.xml
dest: /tmp/ansible-xml-beers-unicode.xml
- name: Count child element
xml:
path: /tmp/ansible-xml-beers-unicode.xml
xpath: /business/beers/beer
count: yes
register: beers
- name: Test expected result
assert:
that:
- beers.changed == false
- beers.count == 2