mirror of
https://github.com/nushell/nushell.git
synced 2024-12-27 17:39:15 +01:00
32 lines
656 B
Rust
32 lines
656 B
Rust
|
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"]
|
||
|
| columns
|
||
|
| get 0
|
||
|
"#
|
||
|
));
|
||
|
|
||
|
assert_eq!(actual.out, "SalesOrders");
|
||
|
}
|