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
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "0.7.0");
|
2020-04-30 06:18:24 +02:00
|
|
|
}
|
|
|
|
|
2020-07-18 03:59:23 +02:00
|
|
|
#[cfg(features = "inc")]
|
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
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "0.7.0");
|
2019-12-15 17:15:06 +01:00
|
|
|
}
|
2020-08-12 09:51:24 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn sets_the_column_from_a_block_full_stream_output() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
wrap content
|
|
|
|
| update content { open --raw cargo_sample.toml | lines | first 5 }
|
|
|
|
| get content.1
|
|
|
|
| str contains "nu"
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "true");
|
|
|
|
}
|
2020-08-26 12:56:45 +02:00
|
|
|
|
|
|
|
#[test]
|
2021-06-07 10:08:35 +02:00
|
|
|
fn sets_the_column_from_a_subexpression() {
|
2020-08-26 12:56:45 +02:00
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
wrap content
|
2021-05-12 03:01:48 +02:00
|
|
|
| update content (open --raw cargo_sample.toml | lines | first 5)
|
2020-08-26 12:56:45 +02:00
|
|
|
| get content.1
|
|
|
|
| str contains "nu"
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "true");
|
|
|
|
}
|