aboutsummaryrefslogtreecommitdiff
path: root/tests/server.scm
blob: 0efd63d0dc125ff1e2c4da66459fa8d4386b07f3 (plain)
1
2
3
4
5
6
7
8
;;; Commentary:
;; Tests parse-endpoint-string, used for defining server routes.
;;; Code:

(test-assert (parse-endpoint-string "/static/:dir/:file"))
;; => "/static/([^/]+)/([^/]+)"
;; => (dir file)