nushell/crates/nu-command/tests/format_conversions/ods.rs

36 lines
737 B
Rust
Raw Normal View History

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
| nth 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"]
2022-02-07 19:11:34 +00:00
<<<<<<< HEAD
| get
2022-02-07 19:11:34 +00:00
=======
| columns
| get 0
2022-02-07 19:11:34 +00:00
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
"#
));
assert_eq!(actual.out, "SalesOrders");
}