1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-09-15 19:36:16 +00:00

Merge pull request #3904 from cakebaker/pr_use_clap_for_help_and_version

pr: use clap to handle help & version
This commit is contained in:
Terts Diepraam 2022-09-25 14:10:00 +02:00 committed by GitHub
commit 9ce600ffa8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 25 deletions

View file

@ -469,3 +469,13 @@ fn test_value_for_number_lines() {
// Therefore, pr tries to access the file, which does not exist.
new_ucmd!().args(&["-n", "foo5.txt", "test.log"]).fails();
}
#[test]
fn test_help() {
new_ucmd!().arg("--help").succeeds();
}
#[test]
fn test_version() {
new_ucmd!().arg("--version").succeeds();
}