mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +00:00
A better handler for ./coreutils date -f aze
(#4482)
This commit is contained in:
parent
882a35c3b6
commit
89b83c2f6a
2 changed files with 31 additions and 9 deletions
|
@ -266,6 +266,24 @@ fn test_date_set_valid_2() {
|
|||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_date_for_invalid_file() {
|
||||
let result = new_ucmd!().arg("--file").arg("invalid_file").fails();
|
||||
result.no_stdout();
|
||||
assert_eq!(
|
||||
result.stderr_str().trim(),
|
||||
"date: invalid_file: No such file or directory",
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_date_for_file() {
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
let file = "test_date_for_file";
|
||||
at.touch(file);
|
||||
ucmd.arg("--file").arg(file).succeeds();
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[cfg(all(unix, not(target_os = "macos")))]
|
||||
/// TODO: expected to fail currently; change to succeeds() when required.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue