Fix trailing-slash test

This commit is contained in:
paku 2024-12-22 16:25:10 +09:00
parent f6d576bda3
commit 48f44c7a19

View file

@ -34,13 +34,13 @@
(multiple-value-bind (body status headers)
(request "/")
(declare (ignore headers))
(ok (not (null body)))
(ok (string= body "ok"))
(ok (eql status 200)))
(multiple-value-bind (body status headers)
(request "/without/trailing/slash")
(declare (ignore headers))
(ok (not (null body)))
(ok (string= body "ok"))
(ok (eql status 200)))
(multiple-value-bind (body status headers)
@ -62,20 +62,19 @@
(multiple-value-bind (body status headers)
(request "/")
(declare (ignore headers))
(ok (not (null body)))
(ok (string= body "ok"))
(ok (eql status 200)))
(multiple-value-bind (body status headers)
(request "/something.file")
(declare (ignore headers))
(ok (not (null body)))
(ok (string= body "ok"))
(ok (eql status 200)))
(multiple-value-bind (body status headers)
(request "/with/trailing/slash/")
(declare (ignore headers))
(ok (not (null body)))
(ok (string= body "ok"))
(ok (eql status 200)))
(multiple-value-bind (body status headers)