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

factor: handle the '< .' arg

This commit is contained in:
Sylvestre Ledru 2024-01-05 20:55:54 +01:00
parent 22a7173305
commit 4f33a375cd
2 changed files with 17 additions and 3 deletions

View file

@ -1258,3 +1258,8 @@ const PRIMES50: &[u64] = &[
1125899906841623,
1125899906841613,
];
#[test]
fn fails_on_directory() {
new_ucmd!().pipe_in(".").fails();
}