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

chgrp: update to clap 4

This commit is contained in:
Terts Diepraam 2022-09-29 15:29:32 +02:00
parent 9605c7f135
commit 075245235e
3 changed files with 34 additions and 22 deletions

View file

@ -21,7 +21,7 @@ fn test_help() {
new_ucmd!()
.arg("--help")
.succeeds()
.stdout_contains("ARGS:\n <GROUP> \n <FILE>... ");
.stdout_contains("Arguments:");
}
#[test]
@ -30,7 +30,7 @@ fn test_help_ref() {
.arg("--help")
.arg("--reference=ref_file")
.succeeds()
.stdout_contains("ARGS:\n <GROUP> \n <FILE>... ");
.stdout_contains("Arguments:");
}
#[test]
@ -39,7 +39,7 @@ fn test_ref_help() {
.arg("--reference=ref_file")
.arg("--help")
.succeeds()
.stdout_contains("ARGS:\n <GROUP> \n <FILE>... ");
.stdout_contains("Arguments:");
}
#[test]
@ -196,7 +196,7 @@ fn test_missing_files() {
.arg("groupname")
.fails()
.stderr_contains(
"error: The following required arguments were not provided:\n <FILE>...\n",
"error: The following required arguments were not provided:\n <FILE>...\n",
);
}