forked from extern/nushell
96e5fc05a3
Pick->Select rename. Integration tests changes.
17 lines
354 B
Rust
17 lines
354 B
Rust
use nu_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.out, "1");
|
|
}
|