1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 19:47:45 +00:00

Install: remove path when copining files

- add a test for copying a file from one directory to another
- add the desired behavior

Fixes #1823
This commit is contained in:
Dominik Bittner 2021-03-20 13:49:53 +01:00 committed by Neculai Balaban
parent 0f7423dfa6
commit 7a91281976

View file

@ -358,3 +358,18 @@ fn test_install_target_file_dev_null() {
ucmd.arg(file1).arg(file2).succeeds().no_stderr(); ucmd.arg(file1).arg(file2).succeeds().no_stderr();
assert!(at.file_exists(file2)); assert!(at.file_exists(file2));
} }
#[test]
fn test_install_copy_file_leading_dot() {
let (at, mut ucmd) = at_and_ucmd!();
let dir1 = "test_install_target_new_file_dir_l";
let dir2 = "test_install_target_new_file_dir_m";
let file1 = "test_install_target_file_file_l1";
at.mkdir(dir1);
at.mkdir(dir2);
at.touch(&format!("{}/{}", dir1, file1));
ucmd.arg(format!("{}/{}", dir1, file1)).arg(dir2).succeeds().no_stderr();
assert!(at.file_exists(&format!("{}/{}", dir2, file1)));
}