aboutsummaryrefslogtreecommitdiff
path: root/tests/function/filesystem/testscript
diff options
context:
space:
mode:
Diffstat (limited to 'tests/function/filesystem/testscript')
-rw-r--r--tests/function/filesystem/testscript79
1 files changed, 0 insertions, 79 deletions
diff --git a/tests/function/filesystem/testscript b/tests/function/filesystem/testscript
index ecda10e..41d4c59 100644
--- a/tests/function/filesystem/testscript
+++ b/tests/function/filesystem/testscript
@@ -71,82 +71,3 @@
EOE
}
}
-
-: path-match
-:
-{
- : string
- :
- : Test overloads for at least one of the first two arguments being of the
- : string type.
- :
- {
- : string-string
- :
- $* <'print $path_match([string] "b", [string] "b*")' >'true'
-
- : untyped-string
- :
- $* <'print $path_match("b", [string] "b*")' >'true'
-
- : string-untyped
- :
- $* <'print $path_match([string] "b", "b*")' >'true'
-
- : path-string
- :
- $* <'print $path_match([path] "b", [string] "b*")' >'true'
- }
-
- : path
- :
- : Test overloads for at least one of the first two arguments being of the
- : path type.
- :
- {
- : path-path
- :
- $* <'print $path_match([path] "a/b", [path] "b**")' >'true'
-
- : path-path-untyped
- :
- $* <'print $path_match([path] "a/b", [path] "b**", "$src_base")' >'true'
-
- : untyped-path
- :
- $* <'print $path_match("a/b", [path] "b**")' >'true'
-
- : untyped-path-dir
- :
- $* <'print $path_match("a/b", [path] "b**", $src_base)' >'true'
-
- : path-untyped
- :
- $* <'print $path_match([path] "a/b", "b**")' >'true'
- }
-
- : untyped
- :
- : Test overloads for the first two arguments being untyped.
- :
- {
- : converted-to-strings
- :
- $* <'print $path_match("b", "b**")' >'true'
-
- : converted-to-paths-due-to
- {
- : pattern
- :
- $* <'print $path_match("a/b/", "b**/")' >'true'
-
- : entry
- :
- $* <'print $path_match("a/b", "b**")' >'true'
-
- : start-dir
- :
- $* <'print $path_match("", "s***/", "$src_base")' >'true'
- }
- }
-}