mirror of
https://github.com/nushell/nushell.git
synced 2024-12-15 11:42:45 +01:00
c4daa2e40f
Move to an experimental new parser
35 lines
948 B
Rust
35 lines
948 B
Rust
use nu_test_support::fs::Stub::FileWithContentToBeTrimmed;
|
|
use nu_test_support::playground::Playground;
|
|
use nu_test_support::{nu, pipeline};
|
|
|
|
#[test]
|
|
fn all() {
|
|
Playground::setup("sum_test_1", |dirs, sandbox| {
|
|
sandbox.with_files(vec![FileWithContentToBeTrimmed(
|
|
"meals.json",
|
|
r#"
|
|
{
|
|
meals: [
|
|
{description: "1 large egg", calories: 90},
|
|
{description: "1 cup white rice", calories: 250},
|
|
{description: "1 tablespoon fish oil", calories: 108}
|
|
]
|
|
}
|
|
"#,
|
|
)]);
|
|
|
|
let actual = nu!(
|
|
cwd: dirs.test(), pipeline(
|
|
r#"
|
|
open meals.json
|
|
| get meals
|
|
| get calories
|
|
| sum
|
|
| echo $it
|
|
"#
|
|
));
|
|
|
|
assert_eq!(actual, "448");
|
|
})
|
|
}
|