2020-01-07 07:35:00 +01:00
|
|
|
use nu_test_support::{nu, pipeline};
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn from_ods_file_to_table() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
open sample_data.ods
|
|
|
|
| get SalesOrders
|
2022-02-09 11:58:54 +01:00
|
|
|
| get 4
|
2022-02-20 01:26:47 +01:00
|
|
|
| get column2
|
2020-01-07 07:35:00 +01:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "Gill");
|
2020-01-07 07:35:00 +01:00
|
|
|
}
|
2021-06-10 14:44:24 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn from_ods_file_to_table_select_sheet() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
open sample_data.ods --raw
|
|
|
|
| from ods -s ["SalesOrders"]
|
2022-02-04 03:01:45 +01:00
|
|
|
| columns
|
|
|
|
| get 0
|
2021-06-10 14:44:24 +02:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "SalesOrders");
|
|
|
|
}
|