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

Merge branch 'master' into chgrp/no-err

This commit is contained in:
Sylvestre Ledru 2021-08-13 01:35:21 +02:00 committed by GitHub
commit a7797c01c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
39 changed files with 1361 additions and 1359 deletions

View file

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