1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

chgrp: handle empty group

This commit is contained in:
Michael Debertol 2021-08-10 23:31:42 +02:00
parent 13b6d003bb
commit 1c30fb42d2
4 changed files with 23 additions and 16 deletions

View file

@ -228,3 +228,10 @@ fn test_big_h() {
);
}
}
#[test]
fn test_no_change() {
let (at, mut ucmd) = at_and_ucmd!();
at.touch("file");
ucmd.arg("").arg(at.plus("file")).succeeds();
}