aboutsummaryrefslogtreecommitdiff
path: root/tests/server.scm
diff options
context:
space:
mode:
Diffstat (limited to 'tests/server.scm')
-rw-r--r--tests/server.scm21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/server.scm b/tests/server.scm
deleted file mode 100644
index a2b3ea9d..00000000
--- a/tests/server.scm
+++ /dev/null
@@ -1,21 +0,0 @@
-;;; Commentary:
-;; Tests parse-endpoint-string, used for defining server routes.
-;;; Code:
-
-(((web http make-routes) parse-endpoint-string)
- ((hnh util) let*))
-
-(test-assert "Check that parsing doesn't crash"
- (parse-endpoint-string "/static/:dir/:file"))
-
-;; Checks that parsing produces correct results
-(let* ((path args (parse-endpoint-string "/static/:dir/:file")))
- (test-equal "/static/([^/.]+)/([^/.]+)" path)
- (test-equal '(dir file) args))
-
-
-;; Checks that parsing with custom regex works
-;; along with literal periods.
-(let* ((path args (parse-endpoint-string "/static/:filename{.*}.:ext")))
- (test-equal "/static/(.*)\\.([^/.]+)" path)
- (test-equal '(filename ext) args))