mirror of
https://github.com/nushell/nushell.git
synced 2024-12-27 17:39:15 +01:00
b574dc6365
* Put a sample_data.ods file for testing This is a copy of the sample_data.xlsx file but in ods format * Add the from-ods command Most of the work was doing `rg xlsx` and then copy/paste with light editing * Add tests for the from-ods command * Fix failing test The problem was improper filename sorting in the test `prepares_and_decorates_filesystem_source_files`
18 lines
345 B
Rust
18 lines
345 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
|
|
| nth 4
|
|
| get Column2
|
|
| echo $it
|
|
"#
|
|
));
|
|
|
|
assert_eq!(actual, "Gill");
|
|
}
|