2019-12-17 18:54:39 +00:00
|
|
|
use nu_test_support::fs::Stub::FileWithContentToBeTrimmed;
|
|
|
|
use nu_test_support::playground::Playground;
|
|
|
|
use nu_test_support::{nu, pipeline};
|
2019-12-15 16:15:06 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn adds_row_data_if_column_missing() {
|
|
|
|
Playground::setup("default_test_1", |dirs, sandbox| {
|
|
|
|
sandbox.with_files(vec![FileWithContentToBeTrimmed(
|
|
|
|
"los_tres_amigos.json",
|
|
|
|
r#"
|
|
|
|
{
|
|
|
|
"amigos": [
|
|
|
|
{"name": "Yehuda"},
|
|
|
|
{"name": "Jonathan", "rusty_luck": 0},
|
|
|
|
{"name": "Andres", "rusty_luck": 0},
|
|
|
|
{"name":"GorbyPuff"}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
)]);
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: dirs.test(), pipeline(
|
|
|
|
r#"
|
|
|
|
open los_tres_amigos.json
|
|
|
|
| get amigos
|
|
|
|
| default rusty_luck 1
|
|
|
|
| where rusty_luck == 1
|
2021-03-13 21:46:40 +00:00
|
|
|
| length
|
2019-12-15 16:15:06 +00:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2020-05-07 11:03:43 +00:00
|
|
|
assert_eq!(actual.out, "2");
|
2019-12-15 16:15:06 +00:00
|
|
|
});
|
|
|
|
}
|