clap/tests/borrowed.rs

26 lines
603 B
Rust
Raw Normal View History

extern crate clap;
extern crate regex;
2018-11-14 17:05:06 +00:00
use clap::{App, Arg};
include!("../clap-test.rs");
#[test]
fn borrowed_args() {
2018-01-25 04:05:05 +00:00
let arg = Arg::with_name("some")
.short('s')
2018-01-25 04:05:05 +00:00
.long("some")
.help("other help");
let arg2 = Arg::with_name("some2")
.short('S')
2018-01-25 04:05:05 +00:00
.long("some-thing")
.help("other help");
let result = App::new("sub_command_negate")
.arg(Arg::with_name("test").index(1))
.arg(&arg)
.arg(&arg2)
.subcommand(App::new("sub1").arg(&arg))
.try_get_matches_from(vec!["prog"]);
assert!(result.is_ok());
}