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

realpath: require arguments again

This commit is contained in:
Terts Diepraam 2022-10-13 20:06:27 +02:00
parent b0c200e831
commit 14e3c5176c
2 changed files with 6 additions and 0 deletions

View file

@ -453,3 +453,8 @@ fn test_realpath_trailing_slash() {
.succeeds()
.stdout_contains(format!("{}no_dir\n", std::path::MAIN_SEPARATOR));
}
#[test]
fn test_realpath_empty() {
new_ucmd!().fails().code_is(1);
}