15 lines
369 B
Rust
Raw Normal View History

2025-06-27 02:33:44 +01:00
use nu_test_support::nu;
#[test]
fn const_avg() {
let actual = nu!("const MODE = [1 3 3 5] | math mode; $MODE");
assert_eq!(actual.out, "╭───┬───╮│ 0 │ 3 │╰───┴───╯");
}
#[test]
fn cannot_mode_range() {
let actual = nu!("0..5 | math mode");
assert!(actual.err.contains("nu::parser::input_type_mismatch"));
}