mirror of
https://github.com/nushell/nushell
synced 2024-11-16 01:37:57 +00:00
31 lines
649 B
Rust
31 lines
649 B
Rust
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
|
|
| get 4
|
|
| get column2
|
|
"#
|
|
));
|
|
|
|
assert_eq!(actual.out, "Gill");
|
|
}
|
|
|
|
#[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"]
|
|
| columns
|
|
| get 0
|
|
"#
|
|
));
|
|
|
|
assert_eq!(actual.out, "SalesOrders");
|
|
}
|