2019-12-17 19:54:39 +01:00
|
|
|
use nu_test_support::{nu, pipeline};
|
2019-12-15 17:15:06 +01:00
|
|
|
|
|
|
|
#[test]
|
2020-04-30 06:18:24 +02:00
|
|
|
fn sets_the_column() {
|
2019-12-15 17:15:06 +01:00
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
open cargo_sample.toml
|
2020-05-07 07:33:30 +02:00
|
|
|
| update dev-dependencies.pretty_assertions "0.7.0"
|
2019-12-15 17:15:06 +01:00
|
|
|
| get dev-dependencies.pretty_assertions
|
|
|
|
| echo $it
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "0.7.0");
|
2020-04-30 06:18:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn sets_the_column_from_a_block_run_output() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
open cargo_sample.toml
|
2020-05-07 07:33:30 +02:00
|
|
|
| update dev-dependencies.pretty_assertions { open cargo_sample.toml | get dev-dependencies.pretty_assertions | inc --minor }
|
2020-04-30 06:18:24 +02:00
|
|
|
| get dev-dependencies.pretty_assertions
|
|
|
|
| echo $it
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "0.7.0");
|
2019-12-15 17:15:06 +01:00
|
|
|
}
|