diff options
Diffstat (limited to 'unit-tests/test/script/parser/pre-parse.test')
-rw-r--r-- | unit-tests/test/script/parser/pre-parse.test | 36 |
1 files changed, 22 insertions, 14 deletions
diff --git a/unit-tests/test/script/parser/pre-parse.test b/unit-tests/test/script/parser/pre-parse.test index 4057f9a..d2ae7ce 100644 --- a/unit-tests/test/script/parser/pre-parse.test +++ b/unit-tests/test/script/parser/pre-parse.test @@ -1,15 +1,23 @@ -# attribute-pair -# -$* <<EOI 2>>EOE != 0 -x = [foo=bar] -EOI -testscript:1:5: error: unknown value attribute foo=bar -EOE +# file : unit-tests/test/script/parser/pre-parse.test +# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd +# license : MIT; see accompanying LICENSE file -# attribute-pair-empty -# -$* <<EOI 2>>EOE != 0 -x = [foo=] -EOI -testscript:1:5: error: unknown value attribute foo -EOE +: attribute +: +{ + : pair + : + $* <<EOI 2>>EOE != 0 + x = [foo=bar] + EOI + testscript:1:5: error: unknown value attribute foo=bar + EOE + + : pair-empty + : + $* <<EOI 2>>EOE != 0 + x = [foo=] + EOI + testscript:1:5: error: unknown value attribute foo + EOE +} |