clap/tests/unique_args.rs

38 lines
1,012 B
Rust
Raw Normal View History

use clap::{App, Arg};
2019-06-25 23:02:53 +00:00
#[cfg(debug_assertions)]
#[test]
2020-04-09 14:21:45 +00:00
#[should_panic(expected = "Argument name must be unique\n\n\t'arg1' is already in use")]
fn unique_arg_names() {
let _ = App::new("some")
.args(&[
2019-06-25 23:02:53 +00:00
Arg::with_name("arg1").short('a'),
Arg::with_name("arg1").short('b'),
])
.try_get_matches();
}
2019-06-25 23:02:53 +00:00
#[cfg(debug_assertions)]
#[test]
2020-04-09 14:21:45 +00:00
#[should_panic(expected = "Argument short must be unique\n\n\t'-a' is already in use")]
fn unique_arg_shorts() {
let _ = App::new("some")
.args(&[
Arg::with_name("arg1").short('a'),
Arg::with_name("arg2").short('a'),
])
.try_get_matches();
}
2019-06-25 23:02:53 +00:00
#[cfg(debug_assertions)]
#[test]
2020-04-09 14:21:45 +00:00
#[should_panic(expected = "Argument long must be unique\n\n\t'--long' is already in use")]
fn unique_arg_longs() {
let _ = App::new("some")
.args(&[
Arg::with_name("arg1").long("long"),
Arg::with_name("arg2").long("long"),
])
.try_get_matches();
}