1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

win_regedit integration test to cover change to allow empty strings to be compared

This commit is contained in:
= 2016-04-24 17:24:03 +01:00
parent f24f895e04
commit bd74091ed9

View file

@ -349,6 +349,29 @@
that: that:
- "check56_result.changed == true" - "check56_result.changed == true"
# test empty data value (some things depend on this, having no data is not equivalent)
- name: set an empty data value
win_regedit:
key: HKCU:\Software\Cow Corp
value: helloempty
data: ""
register: check61_result
- assert:
that:
- "check61_result.changed == true"
- name: set an empty data value again (should not change)
win_regedit:
key: HKCU:\Software\Cow Corp
value: helloempty
data: ""
register: check62_result
- assert:
that:
- "check62_result.changed == false"
# tear down # tear down
- name: remove registry key used for testing - name: remove registry key used for testing
@ -356,4 +379,5 @@
key: 'HKCU:\SOFTWARE\Cow Corp' key: 'HKCU:\SOFTWARE\Cow Corp'
state: absent state: absent
# END OF win_regedit tests # END OF win_regedit tests