mirror of
https://github.com/nushell/nushell
synced 2024-12-27 21:43:09 +00:00
17 lines
347 B
Rust
17 lines
347 B
Rust
|
use test_support::{nu, pipeline};
|
||
|
|
||
|
#[test]
|
||
|
fn insert_plugin() {
|
||
|
let actual = nu!(
|
||
|
cwd: "tests/fixtures/formats", pipeline(
|
||
|
r#"
|
||
|
open cargo_sample.toml
|
||
|
| insert dev-dependencies.newdep "1"
|
||
|
| get dev-dependencies.newdep
|
||
|
| echo $it
|
||
|
"#
|
||
|
));
|
||
|
|
||
|
assert_eq!(actual, "1");
|
||
|
}
|