mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
Ansible.ModuleUtils.FileUtil: catch DirectoryNotFoundException when testing a path (#37968)
This commit is contained in:
@@ -144,6 +144,19 @@
|
||||
that:
|
||||
- statout.stat.exists == true
|
||||
|
||||
# https://github.com/ansible/ansible/issues/37967
|
||||
- name: test creates with file in missing directory
|
||||
win_shell: echo hi
|
||||
args:
|
||||
creates: c:\fakefolder\fakefolder2\fakefile.txt
|
||||
register: shellout
|
||||
|
||||
- name: validate result
|
||||
assert:
|
||||
that:
|
||||
- shellout.skipped is not defined
|
||||
- shellout.changed
|
||||
|
||||
- name: run with removes, should remove
|
||||
win_shell: Remove-Item c:\testfile.txt
|
||||
args:
|
||||
|
||||
Reference in New Issue
Block a user