mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 03:27:44 +00:00
comm: enable "no_arguments" & "one_argument" tests
This commit is contained in:
parent
588a890edd
commit
a22749ec57
1 changed files with 2 additions and 4 deletions
|
@ -178,16 +178,14 @@ fn unintuitive_default_behavior_1() {
|
||||||
.stdout_only_fixture("defaultcheck_unintuitive.expected");
|
.stdout_only_fixture("defaultcheck_unintuitive.expected");
|
||||||
}
|
}
|
||||||
|
|
||||||
#[ignore] //bug? should help be stdout if not called via -h|--help?
|
|
||||||
#[test]
|
#[test]
|
||||||
fn no_arguments() {
|
fn no_arguments() {
|
||||||
new_ucmd!().fails().no_stdout().no_stderr();
|
new_ucmd!().fails().no_stdout();
|
||||||
}
|
}
|
||||||
|
|
||||||
#[ignore] //bug? should help be stdout if not called via -h|--help?
|
|
||||||
#[test]
|
#[test]
|
||||||
fn one_argument() {
|
fn one_argument() {
|
||||||
new_ucmd!().arg("a").fails().no_stdout().no_stderr();
|
new_ucmd!().arg("a").fails().no_stdout();
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue