From 5007870b52aa549971824959a55ad3bb886f09e0 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 3 Sep 2018 16:37:32 +0200 Subject: Rename .test/test{} to .testscript/testscript{} --- tests/value/concat.test | 73 ------------------------------------------------- 1 file changed, 73 deletions(-) delete mode 100644 tests/value/concat.test (limited to 'tests/value/concat.test') 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 - : - $* <>/EOO - d = [dir_path] foo - f = bar - print $d/$f - EOI - foo/bar - EOO - - : string - : - $* <>/EOO - d = [dir_path] foo - f = [string] bar - print $d/$f - EOI - foo/bar - EOO - - : leading-separator - : - $* <>/EOO - d = [dir_path] foo - f = /bar - print $d/$f - EOI - foo/bar - EOO - - : not-separated - : - $* <>/EOO - d = [dir_path] foo - f = bar - print $d$f - EOI - foo/bar - EOO -} - -: path -: -{ - : separated - : - $* <>/EOO - d = [path] foo - f = bar - print $d/$f - EOI - foo/bar - EOO - - : not-separated - : - $* <>/EOO - d = [path] foo - f = bar - print $d$f - EOI - foobar - EOO -} -- cgit v1.1