diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-11-30 17:32:43 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-11-30 17:32:43 +0200 |
commit | be14801929cf2a6caced87df034ae12a85f42aa6 (patch) | |
tree | 74670e0a746961424e50c09449d526e143c1abfc /tests/function/path | |
parent | 4b31ef06275ad423e48a75d15fb0ee21c3127e3c (diff) |
Add support for typed/untyped concatenated expansion
Diffstat (limited to 'tests/function/path')
-rw-r--r-- | tests/function/path/testscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/function/path/testscript b/tests/function/path/testscript index 0f83ad6..fc1cb31 100644 --- a/tests/function/path/testscript +++ b/tests/function/path/testscript @@ -19,8 +19,8 @@ end : normalize : { - $* <'print $normalize([path] a/../b/)' >"b" : path - $* <'print $normalize([paths] a/../b/ a/../c)' >"b c" : paths + $* <'print $normalize([path] a/../b)' >"b" : path + $* <'print $normalize([paths] a/../b a/../c)' >"b c" : paths $* <'print $normalize([dir_path] a/../b)' >"b$s" : dir-path $* <'print $normalize([dir_paths] a/../b a/../c/)' >"b$s c$s" : dir-paths $* <'print $path.normalize(a/../b)' >"b" : untyped |