mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 14:54:15 +00:00
26 lines
664 B
Rust
26 lines
664 B
Rust
use clap::{app_from_crate, ErrorKind};
|
|
|
|
static EVERYTHING: &str = "clap {{version}}
|
|
Kevin K. <kbknapp@gmail.com>:Clap Maintainers
|
|
A simple to use, efficient, and full-featured Command Line Argument Parser
|
|
|
|
USAGE:
|
|
clap
|
|
|
|
FLAGS:
|
|
-h, --help Prints help information
|
|
-V, --version Prints version information
|
|
";
|
|
|
|
#[test]
|
|
fn app_from_crate() {
|
|
let res = app_from_crate!().try_get_matches_from(vec!["clap", "--help"]);
|
|
|
|
assert!(res.is_err());
|
|
let err = res.unwrap_err();
|
|
assert_eq!(err.kind, ErrorKind::DisplayHelp);
|
|
assert_eq!(
|
|
err.to_string(),
|
|
EVERYTHING.replace("{{version}}", env!("CARGO_PKG_VERSION"))
|
|
);
|
|
}
|