aboutsummaryrefslogtreecommitdiff
path: root/tests/value/concat.test
diff options
context:
space:
mode:
Diffstat (limited to 'tests/value/concat.test')
-rw-r--r--tests/value/concat.test73
1 files changed, 0 insertions, 73 deletions
diff --git a/tests/value/concat.test b/tests/value/concat.test
deleted file mode 100644
index 79f004c..0000000
--- a/tests/value/concat.test
+++ /dev/null
@@ -1,73 +0,0 @@
-# file : tests/value/concat.test
-# copyright : Copyright (c) 2014-2018 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
-}