Changeset 15462
- Timestamp:
- 10/29/20 16:55:06 (3 years ago)
- Location:
- trunk/abcl/test/lisp/abcl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/test/lisp/abcl/pathname-tests.lisp
r15332 r15462 1680 1680 t) 1681 1681 1682 (deftest pathname.uri-encoding.11683 (signals-error1684 (let ((s "file:/path with /spaces"))1685 (equal s1686 (namestring (pathname s))))1687 'error)1688 t)1689 1690 (deftest pathname.uri-encoding.21691 (string-equal "/path with/uri-escaped/?characters/"1692 (namestring (pathname "file:/path%20with/uri-escaped/%3fcharacters/")))1693 t)1694 1695 1682 (deftest pathname.load.1 1696 1683 (let ((dir (merge-pathnames "dir+with+plus/" -
trunk/abcl/test/lisp/abcl/url-pathname.lisp
r12617 r15462 43 43 "query=this" 44 44 "that-fragment") 45 46 (deftest url-pathname.file.1 47 (signals-error 48 (let ((s "file:///path with /spaces")) 49 (equal s 50 (namestring (pathname s)))) 51 'error) 52 t) 53 54 (deftest url-pathname.file.2 55 (let ((p "file:///path%20with/uri-escaped/%3fcharacters/")) 56 (pathname-directory p)) 57 (:ABSOLUTE "path with" "uri-escaped" "?characters")) 58
Note: See TracChangeset
for help on using the changeset viewer.