1
0
mirror of https://github.com/nushell/nushell.git synced 2025-05-11 21:44:31 +02:00
nushell/tests/commands/split_column.rs
Jonathan Turner 4322d373e6 More renames
2019-12-18 07:54:39 +13:00

21 lines
403 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, "name");
}