diff options
Diffstat (limited to 'tests/value/concat.test')
-rw-r--r-- | tests/value/concat.test | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/tests/value/concat.test b/tests/value/concat.test new file mode 100644 index 0000000..8cf6e38 --- /dev/null +++ b/tests/value/concat.test @@ -0,0 +1,73 @@ +# file : tests/value/concat.test +# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd +# license : MIT; see accompanying LICENSE file + +.include ../common.test + +: dir_path +: +{ + : name + : + $* <<EOI >>/EOO + d = [dir_path] foo + f = bar + print $d/$f + EOI + foo/bar + EOO + + : string + : + $* <<EOI >>/EOO + d = [dir_path] foo + f = [string] bar + print $d/$f + EOI + foo/bar + EOO + + : leading-separator + : + $* <<EOI >>/EOO + d = [dir_path] foo + f = /bar + print $d/$f + EOI + foo/bar + EOO + + : not-separated + : + $* <<EOI >>/EOO + d = [dir_path] foo + f = bar + print $d$f + EOI + foo/bar + EOO +} + +: path +: +{ + : separated + : + $* <<EOI >>/EOO + d = [path] foo + f = bar + print $d/$f + EOI + foo/bar + EOO + + : not-separated + : + $* <<EOI >>/EOO + d = [path] foo + f = bar + print $d$f + EOI + foobar + EOO +} |