mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 08:53:29 +01:00
8 lines
221 B
Rust
8 lines
221 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 │╰───┴───╯");
|
||
|
}
|