Add range to the math reductions (#296)

This commit is contained in:
JT
2021-11-06 20:12:08 +13:00
committed by GitHub
parent 02b8027749
commit d401ed64ed
3 changed files with 32 additions and 19 deletions

View File

@ -839,3 +839,8 @@ fn update_cell_path_1() -> TestResult {
"1",
)
}
#[test]
fn range_and_reduction() -> TestResult {
run_test(r#"1..6..36 | math sum"#, "148")
}