2017-10-24 14:45:33 +00:00
|
|
|
extern crate clap;
|
|
|
|
extern crate regex;
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
include!("../clap-test.rs");
|
2018-11-14 17:05:06 +00:00
|
|
|
use clap::{App, Arg};
|
2017-10-24 14:45:33 +00:00
|
|
|
|
|
|
|
fn get_app() -> App<'static, 'static> {
|
|
|
|
App::new("myprog")
|
2018-01-25 04:05:05 +00:00
|
|
|
.arg(
|
|
|
|
Arg::with_name("GLOBAL_ARG")
|
|
|
|
.long("global-arg")
|
|
|
|
.help("Specifies something needed by the subcommands")
|
|
|
|
.global(true)
|
|
|
|
.takes_value(true)
|
|
|
|
.default_value("default_value"),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("GLOBAL_FLAG")
|
|
|
|
.long("global-flag")
|
|
|
|
.help("Specifies something needed by the subcommands")
|
|
|
|
.multiple(true)
|
|
|
|
.global(true),
|
|
|
|
)
|
2018-10-19 20:42:13 +00:00
|
|
|
.subcommand(App::new("outer").subcommand(App::new("inner")))
|
2017-10-24 14:45:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn issue_1076() {
|
|
|
|
let mut app = get_app();
|
2018-10-19 20:42:13 +00:00
|
|
|
let _ = app.try_get_matches_from_mut(vec!["myprog"]);
|
|
|
|
let _ = app.try_get_matches_from_mut(vec!["myprog"]);
|
|
|
|
let _ = app.try_get_matches_from_mut(vec!["myprog"]);
|
2017-10-24 14:45:33 +00:00
|
|
|
}
|
|
|
|
}
|