nushell/crates/nu-command/tests/commands/lines.rs
Fernando Herrera fdce6c49ab engine-q merge
2022-02-07 19:11:34 +00:00

59 lines
1.2 KiB
Rust

use nu_test_support::{nu, pipeline};
#[test]
fn lines() {
let actual = nu!(
cwd: "tests/fixtures/formats", pipeline(
r#"
open cargo_sample.toml -r
| lines
| skip while $it != "[dependencies]"
| skip 1
| first 1
| split column "="
| get Column1
| str trim
"#
));
assert_eq!(actual.out, "rustyline");
}
#[test]
fn lines_proper_buffering() {
let actual = nu!(
cwd: "tests/fixtures/formats", pipeline(
r#"
open lines_test.txt -r
| lines
| str length
<<<<<<< HEAD
| to json
=======
| to json -r
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
"#
));
assert_eq!(actual.out, "[8193,3]");
}
#[test]
fn lines_multi_value_split() {
let actual = nu!(
cwd: "tests/fixtures/formats", pipeline(
r#"
open sample-simple.json
| get first second
| lines
| length
"#
));
<<<<<<< HEAD
assert_eq!(actual.out, "5");
=======
assert_eq!(actual.out, "6");
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
}