More readable tests.

This commit is contained in:
Andrés N. Robalino
2019-08-01 04:25:48 -05:00
parent 610a91a658
commit 0893f89e89
3 changed files with 52 additions and 27 deletions

View File

@ -15,7 +15,8 @@ fn can_convert_table_to_csv_text_and_from_csv_text_back_into_table() {
#[test]
fn can_convert_table_to_json_text_and_from_json_text_back_into_table() {
nu!(output,
nu!(
output,
cwd("tests/fixtures/formats"),
"open sgml_description.json | to-json | from-json | get glossary.GlossDiv.GlossList.GlossEntry.GlossSee | echo $it"
);
@ -47,7 +48,8 @@ fn can_convert_table_to_yaml_text_and_from_yaml_text_back_into_table() {
#[test]
fn can_sort_by_column() {
nu!(output,
nu!(
output,
cwd("tests/fixtures/formats"),
"open cargo_sample.toml --raw | lines | skip 1 | first 4 | split-column \"=\" | sort-by Column1 | skip 1 | first 1 | get Column1 | trim | echo $it"
);
@ -57,7 +59,8 @@ fn can_sort_by_column() {
#[test]
fn can_split_by_column() {
nu!(output,
nu!(
output,
cwd("tests/fixtures/formats"),
"open cargo_sample.toml --raw | lines | skip 1 | first 1 | split-column \"=\" | get Column1 | trim | echo $it"
);