2020-05-24 08:41:30 +02:00
|
|
|
use nu_test_support::fs::Stub::FileWithContentToBeTrimmed;
|
|
|
|
use nu_test_support::playground::Playground;
|
2019-12-17 19:54:39 +01:00
|
|
|
use nu_test_support::{nu, pipeline};
|
2019-12-15 17:15:06 +01:00
|
|
|
|
|
|
|
#[test]
|
2020-05-24 08:41:30 +02:00
|
|
|
fn to_column() {
|
|
|
|
Playground::setup("split_column_test_1", |dirs, sandbox| {
|
|
|
|
sandbox.with_files(vec![FileWithContentToBeTrimmed(
|
|
|
|
"sample.txt",
|
|
|
|
r#"
|
|
|
|
importer,shipper,tariff_item,name,origin
|
|
|
|
"#,
|
|
|
|
)]);
|
2019-12-15 17:15:06 +01:00
|
|
|
|
2020-05-24 08:41:30 +02:00
|
|
|
let actual = nu!(
|
|
|
|
cwd: dirs.test(), pipeline(
|
|
|
|
r#"
|
|
|
|
open sample.txt
|
|
|
|
| lines
|
2020-09-16 21:59:32 +02:00
|
|
|
| str trim
|
2020-05-24 08:41:30 +02:00
|
|
|
| split column ","
|
2022-02-20 01:26:47 +01:00
|
|
|
| get column2
|
2020-05-24 08:41:30 +02:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert!(actual.out.contains("shipper"));
|
|
|
|
})
|
2019-12-15 17:15:06 +01:00
|
|
|
}
|