mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 23:04:23 +00:00
17 lines
337 B
Rust
17 lines
337 B
Rust
use clap::Clap;
|
|
|
|
#[test]
|
|
fn raw_idents() {
|
|
#[derive(Clap, Debug, PartialEq)]
|
|
struct Opt {
|
|
#[clap(short, long)]
|
|
r#type: Vec<String>,
|
|
}
|
|
|
|
assert_eq!(
|
|
Opt {
|
|
r#type: vec!["long".into(), "short".into()]
|
|
},
|
|
Opt::parse_from(&["test", "--type", "long", "-t", "short"])
|
|
);
|
|
}
|