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

36 lines
744 B
Rust
Raw Normal View History

2019-12-17 18:54:39 +00:00
use nu_test_support::{nu, pipeline};
#[test]
fn from_excel_file_to_table() {
let actual = nu!(
cwd: "tests/fixtures/formats", pipeline(
r#"
open sample_data.xlsx
| get SalesOrders
| nth 4
| get Column2
"#
));
assert_eq!(actual.out, "Gill");
}
#[test]
fn from_excel_file_to_table_select_sheet() {
let actual = nu!(
cwd: "tests/fixtures/formats", pipeline(
r#"
open sample_data.xlsx --raw
| from xlsx -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");
}