1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

test(sort): options -C and -c should be mutually exclusive but aren't

This commit is contained in:
David Rebbe 2025-01-22 20:09:24 -05:00 committed by Daniel Hofstetter
parent c4ffeea320
commit f394a20d9a

View file

@ -1324,3 +1324,8 @@ fn test_human_blocks_r_and_q() {
.succeeds()
.stdout_is(output);
}
#[test]
fn test_args_check_conflict() {
new_ucmd!().arg("-c").arg("-C").fails();
}