diff options
Diffstat (limited to 'tests/eval/value.test')
-rw-r--r-- | tests/eval/value.test | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/eval/value.test b/tests/eval/value.test deleted file mode 100644 index a3e1d4c..0000000 --- a/tests/eval/value.test +++ /dev/null @@ -1,23 +0,0 @@ -# file : tests/eval/value.test -# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd -# license : MIT; see accompanying LICENSE file - -# Test value part of the grammar (eval-value). - -.include ../common.test - -$* <'print (foo)' >'foo' : value -$* <'print ()' >'' : value-empty -$* <'print ((foo bar))' >'foo bar' : eval -$* <'print (!false)' >'true' : not -$* <'print (!!true)' >'true' : not-double - -: attribute -: -{ - $* <'print $type([string] foo)' >'string' : type - $* <'print ([uint64] 001)' >'1' : value - $* <'print $null([null])' >'true' : null - $* <'print $type([string] (foo == bar))' >'string' : eval - $* <'print $type([string] !true)' >'string' : not -} |