summaryrefslogtreecommitdiffstats
path: root/tests/018/path-test.tl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/018/path-test.tl')
-rw-r--r--tests/018/path-test.tl6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/018/path-test.tl b/tests/018/path-test.tl
index 919186ac..d3aa6dce 100644
--- a/tests/018/path-test.tl
+++ b/tests/018/path-test.tl
@@ -15,4 +15,8 @@
(path-search "sh" "AlMoStCeRtAiNlLyNoNeXisTenT:/bin") "/bin/sh"
(path-search "sh" "/bin") "/bin/sh"
(path-search "sh" "/bin/") "/bin/sh"
- (path-search "sh" ":/bin/") "/bin/sh")
+ (path-search "sh" ":/bin/") "/bin/sh"
+ (path-search "" "/bin") nil
+ (path-search "." "/bin") nil
+ (path-search ".." "/bin") nil
+ (path-search "foo/bar" "/bin") "foo/bar")