summaryrefslogtreecommitdiffstats
path: root/tests/018
diff options
context:
space:
mode:
Diffstat (limited to 'tests/018')
-rw-r--r--tests/018/rel-path.tl5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/018/rel-path.tl b/tests/018/rel-path.tl
index cdcc7e4f..11651c17 100644
--- a/tests/018/rel-path.tl
+++ b/tests/018/rel-path.tl
@@ -19,4 +19,7 @@
(rel-path "x///" "x") "."
(rel-path "x" "x///") "."
(rel-path "///x" "/x") "."
- (rel-path "../../x" "y") :error)
+ (rel-path "../../x" "y") :error
+ (rel-path "" "") "."
+ (rel-path "a" "") ".."
+ (rel-path "" "a") "a")