add a test to calculate average of bytes

This commit is contained in:
notryanb@gmail.com 2019-10-16 20:45:37 -04:00
parent 2f5eeab567
commit 4f91d2512a

View File

@ -580,7 +580,7 @@ fn can_sum() {
}
#[test]
fn can_average() {
fn can_average_numbers() {
let actual = nu!(
cwd: "tests/fixtures/formats", h::pipeline(
r#"
@ -594,6 +594,16 @@ fn can_average() {
assert_eq!(actual, "101.5000000000000")
}
#[test]
fn can_average_bytes() {
let actual = nu!(
cwd: "tests/fixtures/formats",
"ls | get size | average | echo $it"
);
assert_eq!(actual, "2282.727272727273");
}
#[test]
fn can_filter_by_unit_size_comparison() {
let actual = nu!(