2020-03-29 04:05:57 +02:00
|
|
|
use nu_test_support::{nu, pipeline};
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn headers_uses_first_row_as_header() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
open sample_headers.xlsx
|
|
|
|
| get Sheet1
|
|
|
|
| headers
|
|
|
|
| get header0
|
2022-02-15 16:08:07 +01:00
|
|
|
| to json --raw"#
|
2020-03-29 04:05:57 +02:00
|
|
|
));
|
|
|
|
|
2022-02-15 16:08:07 +01:00
|
|
|
assert_eq!(actual.out, r#"["r1c0","r2c0"]"#)
|
2020-03-29 04:05:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn headers_adds_missing_column_name() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
open sample_headers.xlsx
|
|
|
|
| get Sheet1
|
|
|
|
| headers
|
2022-02-20 01:26:47 +01:00
|
|
|
| get column1
|
2022-02-15 16:08:07 +01:00
|
|
|
| to json --raw"#
|
2020-03-29 04:05:57 +02:00
|
|
|
));
|
|
|
|
|
2022-02-15 16:08:07 +01:00
|
|
|
assert_eq!(actual.out, r#"["r1c1","r2c1"]"#)
|
2020-03-29 04:05:57 +02:00
|
|
|
}
|