mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 23:04:23 +00:00
tests: adds tests to ensure borrowed args don't break
This commit is contained in:
parent
0a922e5f61
commit
677f323bce
1 changed files with 19 additions and 0 deletions
19
tests/borrowed.rs
Normal file
19
tests/borrowed.rs
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
extern crate clap;
|
||||||
|
extern crate regex;
|
||||||
|
|
||||||
|
use clap::{App, Arg, SubCommand};
|
||||||
|
|
||||||
|
include!("../clap-test.rs");
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn borrowed_args() {
|
||||||
|
let arg = Arg::with_name("some").short("s").long("some").help("other help");
|
||||||
|
let arg2 = Arg::with_name("some2").short("S").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(SubCommand::with_name("sub1").arg(&arg))
|
||||||
|
.get_matches_from_safe(vec!["prog"]);
|
||||||
|
assert!(result.is_ok());
|
||||||
|
}
|
Loading…
Reference in a new issue