mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2026-01-16 18:21:01 +00:00
9 lines
175 B
Rust
9 lines
175 B
Rust
use common::util::*;
|
|
|
|
#[test]
|
|
fn test_df_compatible() {
|
|
let (_, mut ucmd) = at_and_ucmd!();
|
|
let result = ucmd.arg("-ah").run();
|
|
assert!(result.success);
|
|
}
|
|
// TODO
|