2020-02-02 07:50:40 +00:00
|
|
|
use clap::{app_from_crate, ErrorKind};
|
|
|
|
|
|
|
|
static EVERYTHING: &str = "clap {{version}}
|
2020-02-10 18:26:10 +00:00
|
|
|
Kevin K. <kbknapp@gmail.com>:Clap Maintainers
|
2020-02-02 07:50:40 +00:00
|
|
|
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::HelpDisplayed);
|
|
|
|
assert_eq!(
|
|
|
|
err.message,
|
|
|
|
EVERYTHING.replace("{{version}}", env!("CARGO_PKG_VERSION"))
|
|
|
|
);
|
|
|
|
}
|