mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 23:37:48 +02:00
Add and edit functionality
This commit is contained in:
@ -4,10 +4,12 @@ use helpers::in_directory as cwd;
|
||||
|
||||
#[test]
|
||||
fn external_num() {
|
||||
nu!(output,
|
||||
nu!(
|
||||
output,
|
||||
cwd("tests/fixtures/formats"),
|
||||
"open sgml_description.json | get glossary.GlossDiv.GlossList.GlossEntry.Height | echo $it");
|
||||
|
||||
"open sgml_description.json | get glossary.GlossDiv.GlossList.GlossEntry.Height | echo $it"
|
||||
);
|
||||
|
||||
assert_eq!(output, "10");
|
||||
}
|
||||
|
||||
@ -19,3 +21,21 @@ fn inc_plugin() {
|
||||
|
||||
assert_eq!(output, "11");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn add_plugin() {
|
||||
nu!(output,
|
||||
cwd("tests/fixtures/formats"),
|
||||
"open cargo_sample.toml | add dev-dependencies.newdep \"1\" | get dev-dependencies.newdep | echo $it");
|
||||
|
||||
assert_eq!(output, "1");
|
||||
}
|
||||
|
||||
#[test]
|
||||
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");
|
||||
|
||||
assert_eq!(output, "7");
|
||||
}
|
||||
|
Reference in New Issue
Block a user