mirror of
https://github.com/nushell/nushell.git
synced 2025-08-14 13:39:08 +02:00
More readable tests.
This commit is contained in:
@ -15,9 +15,11 @@ fn external_num() {
|
||||
|
||||
#[test]
|
||||
fn inc_plugin() {
|
||||
nu!(output,
|
||||
nu!(
|
||||
output,
|
||||
cwd("tests/fixtures/formats"),
|
||||
"open sgml_description.json | get glossary.GlossDiv.GlossList.GlossEntry.Height | inc | echo $it");
|
||||
"open sgml_description.json | get glossary.GlossDiv.GlossList.GlossEntry.Height | inc | echo $it"
|
||||
);
|
||||
|
||||
assert_eq!(output, "11");
|
||||
}
|
||||
@ -26,7 +28,8 @@ fn inc_plugin() {
|
||||
fn add_plugin() {
|
||||
nu!(output,
|
||||
cwd("tests/fixtures/formats"),
|
||||
"open cargo_sample.toml | add dev-dependencies.newdep \"1\" | get dev-dependencies.newdep | echo $it");
|
||||
"open cargo_sample.toml | add dev-dependencies.newdep \"1\" | get dev-dependencies.newdep | echo $it"
|
||||
);
|
||||
|
||||
assert_eq!(output, "1");
|
||||
}
|
||||
@ -35,7 +38,8 @@ fn add_plugin() {
|
||||
fn edit_plugin() {
|
||||
nu!(output,
|
||||
cwd("tests/fixtures/formats"),
|
||||
"open cargo_sample.toml | edit dev-dependencies.pretty_assertions \"7\" | get dev-dependencies.pretty_assertions | echo $it");
|
||||
"open cargo_sample.toml | edit dev-dependencies.pretty_assertions \"7\" | get dev-dependencies.pretty_assertions | echo $it"
|
||||
);
|
||||
|
||||
assert_eq!(output, "7");
|
||||
}
|
||||
|
Reference in New Issue
Block a user