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

fix(df): Linux: Fix the mount path and type

This commit is contained in:
Sylvestre Ledru 2020-04-30 23:02:22 +02:00 committed by Roy Ivy III
parent 8f6770401d
commit c85756e509
2 changed files with 11 additions and 2 deletions

View file

@ -6,4 +6,11 @@ fn test_df_compatible() {
let result = ucmd.arg("-ah").run();
assert!(result.success);
}
#[test]
fn test_df_compatible_type() {
let (_, mut ucmd) = at_and_ucmd!();
let result = ucmd.arg("-aT").run();
assert!(result.success);
}
// TODO