mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 05:10:22 -07:00
fixed: win_copy: typo "file file" (double "file") (#33620)
* fixed: win_copy: typo "file file" (double "file") Signed-off-by: Alexey Shumkin <Alex.Crezoff@gmail.com> * Add quotes around filenames/directories * Fix tests for new quotes * Fix tests for new quotes * One more ? * Another one...
This commit is contained in:
parent
4071cd7a95
commit
6f719ea848
3 changed files with 23 additions and 23 deletions
|
@ -5,7 +5,7 @@
|
|||
dest: fakedest
|
||||
remote_src: yes
|
||||
register: fail_remote_invalid_source
|
||||
failed_when: "fail_remote_invalid_source.msg != 'Cannot copy src file: fakesource as it does not exist'"
|
||||
failed_when: "'it does not exist' not in fail_remote_invalid_source.msg"
|
||||
|
||||
- name: setup source folder for remote tests
|
||||
win_copy:
|
||||
|
@ -43,7 +43,7 @@
|
|||
dest: '{{test_win_copy_path}}\target\file\foo.txt'
|
||||
remote_src: yes
|
||||
register: fail_remote_file_parent_dir_file
|
||||
failed_when: fail_remote_file_parent_dir_file.msg != 'object at destination parent dir ' + test_win_copy_path + '\\target\\file is currently a file'
|
||||
failed_when: "'is currently a file' not in fail_remote_file_parent_dir_file.msg"
|
||||
|
||||
- name: fail source is a folder dest parent dir is also a file
|
||||
win_copy:
|
||||
|
@ -59,7 +59,7 @@
|
|||
dest: '{{test_win_copy_path}}\missing-dir\foo.txt'
|
||||
remote_src: yes
|
||||
register: fail_remote_missing_parent_dir
|
||||
failed_when: "'Destination directory ' + test_win_copy_path + '\\missing-dir does not exist' not in fail_remote_missing_parent_dir.msg"
|
||||
failed_when: "'does not exist' not in fail_remote_missing_parent_dir.msg"
|
||||
|
||||
- name: remove target after remote failure tests
|
||||
win_file:
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
src: foo.txt
|
||||
dest: '{{test_win_copy_path}}\missing-dir\foo.txt'
|
||||
register: fail_missing_parent_dir
|
||||
failed_when: "'Destination directory ' + test_win_copy_path + '\\missing-dir does not exist' not in fail_missing_parent_dir.msg"
|
||||
failed_when: "'does not exist' not in fail_missing_parent_dir.msg"
|
||||
|
||||
- name: fail to copy an encrypted file without the password set
|
||||
win_copy:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue