mirror of
https://github.com/nushell/nushell.git
synced 2025-03-13 15:08:43 +01:00
15 lines
369 B
Rust
15 lines
369 B
Rust
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"));
|
|
}
|