forked from jpos/jPOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request jpos#518 from barspi/feature/negate-op-in-environm…
…ent-expressions Feature/negate op in environment expressions
- Loading branch information
Showing
3 changed files
with
139 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,19 @@ | ||
test: | ||
value: "from testenv.yml" | ||
|
||
true_boolean: true | ||
false_boolean: false | ||
yes_lower: yes # converted to true by yaml parser | ||
no_upper: NO # converted to false by yaml parser | ||
|
||
annotation: | ||
envstring: "from testenv.yml" | ||
|
||
one: UNO | ||
two: DOS | ||
|
||
--- | ||
system: | ||
property: | ||
test: | ||
sys: ${test.value} | ||
sys: ${test.value} |