mod utils; use clap::Clap; use utils::*; #[test] fn explicit_short_long_no_rename() { #[derive(Clap, PartialEq, Debug)] struct Opt { #[clap(short = '.', long = ".foo", multiple_occurrences(true))] foo: Vec, } assert_eq!( Opt { foo: vec!["short".into(), "long".into()] }, Opt::parse_from(&["test", "-.", "short", "--.foo", "long"]) ); } #[test] fn explicit_name_no_rename() { #[derive(Clap, PartialEq, Debug)] struct Opt { #[clap(name = ".options")] foo: Vec, } let help = get_long_help::(); assert!(help.contains("[.options]...")) }