Re-enable conflict_output and conflict_output_rev

This commit is contained in:
tomjw64 2020-08-15 02:51:42 -05:00
parent ddd55e57dc
commit fbb7a0f6e4

View file

@ -2,14 +2,14 @@ mod utils;
use clap::{App, Arg, ArgGroup, ErrorKind};
static CONFLICT_ERR: &str = "error: The argument '-F' cannot be used with '--flag'
static CONFLICT_ERR: &str = "error: The argument '--flag' cannot be used with '-F'
USAGE:
clap-test <positional> <positional2> --flag --long-option-2 <option2>
For more information try --help";
static CONFLICT_ERR_REV: &str = "error: The argument '--flag' cannot be used with '-F'
static CONFLICT_ERR_REV: &str = "error: The argument '-F' cannot be used with '--flag'
USAGE:
clap-test <positional> <positional2> -F --long-option-2 <option2>
@ -88,22 +88,22 @@ fn group_conflict_2() {
#[test]
fn conflict_output() {
utils::compare_output(
assert!(utils::compare_output(
utils::complex_app(),
"clap-test val1 --flag --long-option-2 val2 -F",
CONFLICT_ERR,
true,
);
));
}
#[test]
fn conflict_output_rev() {
utils::compare_output(
assert!(utils::compare_output(
utils::complex_app(),
"clap-test val1 -F --long-option-2 val2 --flag",
CONFLICT_ERR_REV,
true,
);
));
}
#[test]