2020-05-29 10:10:15 +02:00
|
|
|
use nu_test_support::{nu, pipeline};
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn can_average_numbers() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
open sgml_description.json
|
|
|
|
| get glossary.GlossDiv.GlossList.GlossEntry.Sections
|
2020-06-20 01:20:25 +02:00
|
|
|
| math avg
|
2020-05-29 10:10:15 +02:00
|
|
|
"#
|
|
|
|
));
|
2020-06-18 23:37:18 +02:00
|
|
|
|
2020-05-29 10:10:15 +02:00
|
|
|
assert_eq!(actual.out, "101.5")
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn can_average_bytes() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats",
|
2022-03-17 23:35:50 +01:00
|
|
|
"[100kb, 10b, 100mib] | math avg | to json -r"
|
2022-02-04 03:01:45 +01:00
|
|
|
);
|
|
|
|
|
2022-03-17 23:35:50 +01:00
|
|
|
assert_eq!(actual.out, "34985870");
|
2020-05-29 10:10:15 +02:00
|
|
|
}
|