nushell/crates/nu-command/tests/commands/skip/skip_.rs
Herobs a785e64bc9
Fix 9156 endian consistency (#9873)
- fixed #9156

# Description
I'm trying to fix the problems mentioned in the issue. It's my first
attempt in Rust. Please let me know if there are any problems.

# User-Facing Changes
- The `--little-endian` option dropped, replaced with `--endian`.
- Add the `--compact` option to the `into binary` command.
- `into int` accepts binary input
2023-08-24 07:08:58 -05:00

24 lines
459 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 --endian big
"#
));
assert_eq!(actual.out, "772");
}
#[test]
fn fail_on_non_iterator() {
let actual = nu!("1 | skip 2");
assert!(actual.err.contains("command doesn't support"));
}