mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2026-01-17 10:41:03 +00:00
16 lines
326 B
Rust
16 lines
326 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);
|
|
}
|
|
|
|
#[test]
|
|
fn test_df_compatible_type() {
|
|
let (_, mut ucmd) = at_and_ucmd!();
|
|
let result = ucmd.arg("-aT").run();
|
|
assert!(result.success);
|
|
}
|
|
// TODO
|