use nu_test_support::nu;
#[test]
fn lines() {
let actual = nu!(cwd: "tests/fixtures/formats", r#"
open cargo_sample.toml -r
| lines
| skip while {|it| $it != "[dependencies]" }
| skip 1
| first
| split column "="
| get column0.0
| str trim
"#);
assert_eq!(actual.out, "rustyline");
}
#[test]
fn lines_proper_buffering() {
let actual = nu!(cwd: "tests/fixtures/formats", "
open lines_test.txt -r
| lines
| str length
| to json -r
");
assert_eq!(actual.out, "[8193,3]");
}
#[test]
fn lines_multi_value_split() {
let actual = nu!(cwd: "tests/fixtures/formats", "
open sample-simple.json
| get first second
| lines
| length
");
assert_eq!(actual.out, "6");
}
#[test]
fn lines_mixed_line_endings() {
let actual = nu!(cwd: "tests/fixtures/formats", r#"
"foo\nbar\r\nquux" | lines | length
"#);
assert_eq!(actual.out, "3");
}
#[cfg(not(windows))]
#[test]
fn lines_on_error() {
let actual = nu!("open . | lines");
assert!(actual.err.contains("Is a directory"));
}