mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 06:12:40 +00:00
33 lines
813 B
Rust
33 lines
813 B
Rust
extern crate clap;
|
|
extern crate regex;
|
|
|
|
use clap::{App, Arg};
|
|
|
|
include!("../clap-test.rs");
|
|
|
|
static HIDDEN_ARGS: &'static str = "test 1.3
|
|
Kevin K.
|
|
tests stuff
|
|
|
|
USAGE:
|
|
test [FLAGS] [OPTIONS]
|
|
|
|
FLAGS:
|
|
-F, --flag2 some other flag
|
|
-h, --help Prints help information
|
|
-V, --version Prints version information
|
|
|
|
OPTIONS:
|
|
--option <opt> some option";
|
|
|
|
#[test]
|
|
fn hidden_args() {
|
|
let app = App::new("test")
|
|
.author("Kevin K.")
|
|
.about("tests stuff")
|
|
.version("1.3")
|
|
.args(&[Arg::from_usage("-f, --flag 'some flag'").hidden(true),
|
|
Arg::from_usage("-F, --flag2 'some other flag'"),
|
|
Arg::from_usage("--option [opt] 'some option'")]);
|
|
assert!(test::compare_output(app, "test --help", HIDDEN_ARGS, false));
|
|
}
|