diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2024-03-01 13:31:19 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2024-03-01 13:31:19 +0200 |
commit | ce558a5aebc649e52da9598f248bd15fd08a9ba2 (patch) | |
tree | 43d7de32f58cf4f273eea56214a7921da96a3e20 /tests | |
parent | 82ff2e7df2243b679aadbc6cc120a2b5f7ee73b3 (diff) |
Use original variable name in config report
Diffstat (limited to 'tests')
-rw-r--r-- | tests/directive/config.testscript | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/directive/config.testscript b/tests/directive/config.testscript index fba858f..ebdd6ac 100644 --- a/tests/directive/config.testscript +++ b/tests/directive/config.testscript @@ -212,12 +212,14 @@ test.arguments = config [strings, config.report=multiline] config.test.d ?= 1 2 3 config [string, config.report.variable=e] config.test.e ?= abc config [ config.report] f + config [ config.report.variable=g] gg config [bool] config.test.n ?= [null] config [bool] config.test.p config [bool] config.test.p ?= true e = "'$config.test.e'" f = ($config.test.b || $config.test.c) + g = abc EOI @@ -240,6 +242,7 @@ test.arguments = 3 e 'abc' f true + gg abc n [null] p true EOO @@ -262,6 +265,7 @@ test.arguments = 3 e 'xyz' f true + gg abc n true p false EOO |