mirror of
https://github.com/danbulant/nushell
synced 2026-06-10 18:20:25 +00:00
11 lines
260 B
Rust
11 lines
260 B
Rust
use nu_test_support::nu;
|
|
|
|
#[test]
|
|
fn drop_rows() {
|
|
let actual = nu!(
|
|
cwd: "tests/fixtures/formats",
|
|
r#"echo '[{"foo": 3}, {"foo": 8}, {"foo": 4}]' | from json | drop 2 | get foo | sum | echo $it"#
|
|
);
|
|
|
|
assert_eq!(actual.out, "3");
|
|
}
|