mirror of
https://github.com/nushell/nushell.git
synced 2024-11-27 19:03:30 +01:00
44 lines
896 B
Rust
44 lines
896 B
Rust
|
use nu_test_support::{nu, pipeline};
|
||
|
|
||
|
#[test]
|
||
|
fn test_du_flag_min_size() {
|
||
|
let actual = nu!(
|
||
|
cwd: "tests/fixtures/formats", pipeline(
|
||
|
r#"
|
||
|
du -m -1
|
||
|
"#
|
||
|
));
|
||
|
assert!(actual
|
||
|
.err
|
||
|
.contains("Negative value passed when positive one is required"));
|
||
|
|
||
|
let actual = nu!(
|
||
|
cwd: "tests/fixtures/formats", pipeline(
|
||
|
r#"
|
||
|
du -m 1
|
||
|
"#
|
||
|
));
|
||
|
assert!(actual.err.is_empty());
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn test_du_flag_max_depth() {
|
||
|
let actual = nu!(
|
||
|
cwd: "tests/fixtures/formats", pipeline(
|
||
|
r#"
|
||
|
du -d -2
|
||
|
"#
|
||
|
));
|
||
|
assert!(actual
|
||
|
.err
|
||
|
.contains("Negative value passed when positive one is required"));
|
||
|
|
||
|
let actual = nu!(
|
||
|
cwd: "tests/fixtures/formats", pipeline(
|
||
|
r#"
|
||
|
du -d 2
|
||
|
"#
|
||
|
));
|
||
|
assert!(actual.err.is_empty());
|
||
|
}
|