nu-command 0.106.0

Nushell's built-in commands
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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"));
}