mirror of
https://github.com/nushell/nushell
synced 2025-01-04 01:09:05 +00:00
8 lines
159 B
Rust
8 lines
159 B
Rust
|
use nu_test_support::nu;
|
||
|
|
||
|
#[test]
|
||
|
fn const_product() {
|
||
|
let actual = nu!("const PROD = [1 3 5] | math product; $PROD");
|
||
|
assert_eq!(actual.out, "15");
|
||
|
}
|