blob: eff7a8611820262b07e9b2dfeee7c73b25bbb5f6 [file] [log] [blame]
mod utils;
use structopt::StructOpt;
use utils::*;
#[test]
fn explicit_short_long_no_rename() {
#[derive(StructOpt, PartialEq, Debug)]
struct Opt {
#[structopt(short = ".", long = ".foo")]
foo: Vec<String>,
}
assert_eq!(
Opt {
foo: vec!["short".into(), "long".into()]
},
Opt::from_iter(&["test", "-.", "short", "--.foo", "long"])
);
}
#[test]
fn explicit_name_no_rename() {
#[derive(StructOpt, PartialEq, Debug)]
struct Opt {
#[structopt(name = ".options")]
foo: Vec<String>,
}
let help = get_long_help::<Opt>();
assert!(help.contains("[.options]..."))
}