Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ansi-test
ansi-test
Commits
ef373ee6
Commit
ef373ee6
authored
Dec 27, 2021
by
Daniel Kochmański
Browse files
Merge branch 'add-logical-pathname-case' into 'master'
Add test for upcasing in logical pathname parsing See merge request
!48
parents
c6c6c27d
5d116118
Changes
1
Hide whitespace changes
Inline
Side-by-side
pathnames/parse-namestring.lsp
View file @
ef373ee6
...
...
@@ -72,6 +72,14 @@
(list (list etype result)))))
nil)
(deftest parse-namestring.5
(let* ((pathname (parse-namestring "cltest:temp.dat.newest"))
(namestring (namestring pathname)))
(and (typep pathname 'logical-pathname)
(or (equal namestring "CLSTEST:TEMP.DAT.NEWEST")
(equal namestring "CLSTEST:TEMP.DAT.newest"))))
t)
;;; Error tests
(deftest parse-namestring.error.1
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment