mirror of
https://github.com/nushell/nushell.git
synced 2025-01-24 15:19:29 +01:00
8 lines
162 B
Rust
8 lines
162 B
Rust
|
use nu_test_support::nu;
|
||
|
|
||
|
#[test]
|
||
|
fn const_variance() {
|
||
|
let actual = nu!("const VAR = [1 2 3 4 5] | math variance; $VAR");
|
||
|
assert_eq!(actual.out, "2");
|
||
|
}
|