Changeset 12617 for trunk/abcl/test/lisp/abcl/url-pathname.lisp
- Timestamp:
- 04/15/10 14:54:55 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/test/lisp/abcl/url-pathname.lisp
r12616 r12617 30 30 "query=this" 31 31 "that-fragment") 32 33 (deftest url-pathname.3 34 (let* ((p (pathname 35 "http://example.org/a/b/foo.lisp?query=this#that-fragment"))) 36 (values 37 (ext:url-pathname-scheme p) 38 (ext:url-pathname-authority p) 39 (ext:url-pathname-query p) 40 (ext:url-pathname-fragment p))) 41 "http" 42 "example.org" 43 "query=this" 44 "that-fragment")
Note: See TracChangeset
for help on using the changeset viewer.