mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 16:33:37 +01:00
656f707a0b
# Description The working directory doesn't have to be set for those tests (or would be the default anyways). When appropriate also remove calls to the `pipeline()` function. In most places kept the diff minimal and only removed the superfluous part to not pollute the blame view. With simpler tests also simplified things to make them more readable overall (this included removal of the raw string literal). Work for #8670
52 lines
1.4 KiB
Rust
52 lines
1.4 KiB
Rust
use nu_test_support::{nu, nu_repl_code};
|
|
|
|
#[test]
|
|
fn filesize_metric_true() {
|
|
let code = &[
|
|
r#"$env.config = { filesize: { metric: true, format:"mb" } }"#,
|
|
r#"20mib | into string"#,
|
|
];
|
|
let actual = nu!(nu_repl_code(code));
|
|
assert_eq!(actual.out, "21.0 MB");
|
|
}
|
|
|
|
#[test]
|
|
fn filesize_metric_false() {
|
|
let code = &[
|
|
r#"$env.config = { filesize: { metric: false, format:"mib" } }"#,
|
|
r#"20mib | into string"#,
|
|
];
|
|
let actual = nu!(nu_repl_code(code));
|
|
assert_eq!(actual.out, "20.0 MiB");
|
|
}
|
|
|
|
#[test]
|
|
fn filesize_metric_overrides_format() {
|
|
let code = &[
|
|
r#"$env.config = { filesize: { metric: false, format:"mb" } }"#,
|
|
r#"20mib | into string"#,
|
|
];
|
|
let actual = nu!(nu_repl_code(code));
|
|
assert_eq!(actual.out, "20.0 MiB");
|
|
}
|
|
|
|
#[test]
|
|
fn filesize_format_auto_metric_true() {
|
|
let code = &[
|
|
r#"$env.config = { filesize: { metric: true, format:"auto" } }"#,
|
|
r#"[2mb 2gb 2tb] | into string | to nuon"#,
|
|
];
|
|
let actual = nu!(nu_repl_code(code));
|
|
assert_eq!(actual.out, r#"["2.0 MB", "2.0 GB", "2.0 TB"]"#);
|
|
}
|
|
|
|
#[test]
|
|
fn filesize_format_auto_metric_false() {
|
|
let code = &[
|
|
r#"$env.config = { filesize: { metric: false, format:"auto" } }"#,
|
|
r#"[2mb 2gb 2tb] | into string | to nuon"#,
|
|
];
|
|
let actual = nu!(nu_repl_code(code));
|
|
assert_eq!(actual.out, r#"["1.9 MiB", "1.9 GiB", "1.8 TiB"]"#);
|
|
}
|