mirror of
https://codeberg.org/cage/tinmop/
synced 2025-01-30 04:14:47 +01:00
- fixed symbol export for 'normalize path' (thanks op!).
This commit is contained in:
parent
954aa2eaa0
commit
e8e4711074
@ -31,6 +31,7 @@
|
||||
:config
|
||||
:constants
|
||||
:text-utils
|
||||
:iri-parser
|
||||
:misc
|
||||
:alexandria
|
||||
:gemini-constants)
|
||||
|
@ -709,7 +709,6 @@
|
||||
:path
|
||||
:query
|
||||
:fragment
|
||||
:normalize-path
|
||||
:make-uri))
|
||||
|
||||
(defpackage :iri-parser
|
||||
@ -720,6 +719,7 @@
|
||||
:cl-ppcre
|
||||
:text-utils)
|
||||
(:nicknames :iri)
|
||||
(:import-from :fs :normalize-path)
|
||||
(:export
|
||||
:+segment-separator+
|
||||
:iri
|
||||
@ -727,6 +727,7 @@
|
||||
:render-iri
|
||||
:make-iri
|
||||
:iri-parse
|
||||
:normalize-path
|
||||
:absolute-url-p
|
||||
:ipv4-address-p
|
||||
:ipv6-address-p))
|
||||
|
@ -66,7 +66,7 @@
|
||||
(assert-true (test-uri a b) a)))
|
||||
|
||||
(defun normalize (path expected)
|
||||
(string= (uri:normalize-path path)
|
||||
(string= (fs:normalize-path path)
|
||||
expected))
|
||||
|
||||
(deftest test-normalize-path (uri-suite)
|
||||
|
Loading…
x
Reference in New Issue
Block a user