Remove it expansion (#2701)

* Remove it-expansion, take 2

* Cleanup

* silly update to test CI
This commit is contained in:
Jonathan Turner
2020-10-26 19:55:52 +13:00
committed by GitHub
parent 502c9ea706
commit 6951fb440c
95 changed files with 175 additions and 642 deletions

View File

@ -10,7 +10,6 @@ fn creates_the_resulting_string_from_the_given_fields() {
open cargo_sample.toml
| get package
| format "{name} has license {license}"
| echo $it
"#
));
@ -24,7 +23,6 @@ fn given_fields_can_be_column_paths() {
r#"
open cargo_sample.toml
| format "{package.name} is {package.description}"
| echo $it
"#
));
@ -38,7 +36,6 @@ fn can_use_variables() {
r#"
open cargo_sample.toml
| format "{$it.package.name} is {$it.package.description}"
| echo $it
"#
));