mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-06-29 23:49:09 +00:00
Merge pull request #11838 from cchurch/stringify_powershell_unquote_value
Fix for PowerShell unquote method when passed None.
This commit is contained in:
commit
a586c74967
2 changed files with 12 additions and 0 deletions
|
|
@ -39,6 +39,17 @@
|
|||
that:
|
||||
- "template_result.changed == true"
|
||||
|
||||
- name: fill in a basic template again
|
||||
win_template:
|
||||
src: foo.j2
|
||||
dest: "{{win_output_dir}}/foo.templated"
|
||||
register: template_result2
|
||||
|
||||
- name: verify that the template was not changed
|
||||
assert:
|
||||
that:
|
||||
- "not template_result2|changed"
|
||||
|
||||
# VERIFY CONTENTS
|
||||
|
||||
- name: copy known good into place
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue