aboutsummaryrefslogtreecommitdiff
path: root/tests/test/web-query.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-06-28 09:33:08 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2022-07-07 21:14:09 +0200
commit3379e2c4499bf3ca82de7043337e416ef15d24ca (patch)
tree6d0b9e559f5795d4e7ca7b0d8e5a6044f9356176 /tests/test/web-query.scm
parentClean up crypto test. (diff)
downloadcalp-3379e2c4499bf3ca82de7043337e416ef15d24ca.tar.gz
calp-3379e2c4499bf3ca82de7043337e416ef15d24ca.tar.xz
Various test cleanups.
Diffstat (limited to 'tests/test/web-query.scm')
-rw-r--r--tests/test/web-query.scm4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/test/web-query.scm b/tests/test/web-query.scm
index 76c0a76d..0555258b 100644
--- a/tests/test/web-query.scm
+++ b/tests/test/web-query.scm
@@ -3,8 +3,6 @@
:use-module (srfi srfi-88)
:use-module ((web query) :select (parse-query)))
-(test-begin "Web Query")
-
(test-equal "Empty query gives empty assoc list"
'() (parse-query ""))
(test-equal "Simple key-value query"
@@ -34,5 +32,3 @@
;; I don't know if HTTP allows this, but my code works like this
(test-equal "Value with equal in it"
'(key: "=") (parse-query "key=="))
-
-(test-end "Web Query")