1
0
mirror of https://github.com/nushell/nushell.git synced 2025-03-25 14:07:26 +01:00
nushell/crates/nu-command/tests/commands/skip/skip_.rs

17 lines
312 B
Rust

use nu_test_support::{nu, pipeline};
#[test]
fn binary_skip() {
let actual = nu!(
cwd: "tests/fixtures/formats", pipeline(
r#"
open sample_data.ods --raw |
skip 2 |
take 2 |
into int
"#
));
assert_eq!(actual.out, "772");
}