diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-09-30 15:10:24 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-09-30 15:30:55 +0200 |
commit | 16e74b781e0fafeed0312c9fa0fd1ae03cf432ea (patch) | |
tree | 606224d576d36b8c081c19122a9b7c63ee6a68a2 /tests/if-else/testscript | |
parent | 15000dc770e864112aa83035a371117b9ca6e991 (diff) |
Allow attributes in if-else, assert directive's conditions
Diffstat (limited to 'tests/if-else/testscript')
-rw-r--r-- | tests/if-else/testscript | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/if-else/testscript b/tests/if-else/testscript new file mode 100644 index 0000000..afc0302 --- /dev/null +++ b/tests/if-else/testscript @@ -0,0 +1,18 @@ +# file : tests/if-else/testscript +# copyright : Copyright (c) 2014-2019 Code Synthesis Ltd +# license : MIT; see accompanying LICENSE file + +# Test if-else. + +# @@ TODO: more test from old-tests/ + +.include ../common.testscript + +: null +: +$* <<EOI 2>>EOE != 0 +if [null] + print t +EOI +<stdin>:1:4: error: invalid bool value: null +EOE |