Skip to content

Commit ee77934

Browse files
committed
test:canonical add relative tests
1 parent 7924ad6 commit ee77934

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/TestCanonical.m

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
{"~/", stdlib.homedir()}, ...
99
{"~/..", stdlib.parent(stdlib.homedir())}, ...
1010
{mfilename("fullpath") + ".m/..", stdlib.parent(mfilename("fullpath"))}, ...
11-
{"~/not-exist/a/..", stdlib.homedir() + "/not-exist"}
11+
{"~/not-exist/a/..", stdlib.homedir() + "/not-exist"}, ...
12+
{"./not-exist", "not-exist"}, ...
13+
{"../not-exist", "../not-exist"}
1214
};
1315
end
1416

0 commit comments

Comments
 (0)