Raymond Toy pushed to branch issue-135-unix-namestring-dot at cmucl / cmucl
Commits: 777ccaeb by Raymond Toy at 2022-09-20T16:42:52-07:00 Add tests for #135
- - - - -
1 changed file:
- tests/issues.lisp
Changes:
===================================== tests/issues.lisp ===================================== @@ -579,3 +579,9 @@ with user-info = (unix:unix-getpwuid uid) while user-info finally (assert-false user-info))) + +(define-test issue.135 + (:tag :issues) + (assert-equalp "." (ext:unix-namestring ".")) + (assert-equalp "./abc.txt" (ext:unix-namestring "abc.txt")) + (assert-equalp "./abc/def/foo.txt" (ext:unix-namestring "abc/def/foo.txt")))
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/777ccaebb94ed0ccbf5e8f0d...