mirror of
https://github.com/nushell/nushell
synced 2025-01-04 01:09:05 +00: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");
|
||
|
}
|