mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 17:03:45 +01:00
53a6e9f0bd
* Convert sum command into subcommand of the math command * Add bullet points to math.md documentation
14 lines
298 B
Rust
14 lines
298 B
Rust
use nu_test_support::{nu, pipeline};
|
|
|
|
#[test]
|
|
fn each_works_separately() {
|
|
let actual = nu!(
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
r#"
|
|
echo [1 2 3] | each { echo $it 10 | math sum } | to json | echo $it
|
|
"#
|
|
));
|
|
|
|
assert_eq!(actual.out, "[11,12,13]");
|
|
}
|