mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 00:43:33 +01:00
c13fe83784
* update docs to refer to length instead of count * rename count to length * change all occurrences of 'count' to 'length' in tests * format length command
51 lines
1007 B
Rust
51 lines
1007 B
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
|
|
| to json
|
|
"#
|
|
));
|
|
|
|
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
|
|
"#
|
|
));
|
|
|
|
assert_eq!(actual.out, "5");
|
|
}
|