mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 17:03:45 +01:00
96e5fc05a3
Pick->Select rename. Integration tests changes.
21 lines
407 B
Rust
21 lines
407 B
Rust
use nu_test_support::{nu, pipeline};
|
|
|
|
#[test]
|
|
fn by_column() {
|
|
let actual = nu!(
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
r#"
|
|
open cargo_sample.toml --raw
|
|
| lines
|
|
| skip 1
|
|
| first 1
|
|
| split-column "="
|
|
| get Column1
|
|
| trim
|
|
| echo $it
|
|
"#
|
|
));
|
|
|
|
assert_eq!(actual.out, "name");
|
|
}
|