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

test_dircolors: add test_extra_operand

This commit is contained in:
Jan Scheer 2022-06-06 00:20:39 +02:00
parent f1b38e94cd
commit 18bfc03008
No known key found for this signature in database
GPG key ID: C62AD4C29E2B9828

View file

@ -141,6 +141,15 @@ fn test_stdin() {
.no_stderr();
}
#[test]
fn test_extra_operand() {
new_ucmd!()
.args(&["-c", "file1", "file2"])
.fails()
.stderr_contains("dircolors: extra operand 'file2'\n")
.no_stdout();
}
fn test_helper(file_name: &str, term: &str) {
new_ucmd!()
.env("TERM", term)