|
|
@ -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
|
|
|
|