From e6b5011763c7f59ae8acf2c38d568c88ebd65ec1 Mon Sep 17 00:00:00 2001 From: Thomas Albers Raviola Date: Fri, 18 Oct 2024 19:34:44 +0200 Subject: Add test suit --- scgi-routes.asd | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 scgi-routes.asd (limited to 'scgi-routes.asd') diff --git a/scgi-routes.asd b/scgi-routes.asd new file mode 100644 index 0000000..76f885d --- /dev/null +++ b/scgi-routes.asd @@ -0,0 +1,28 @@ +(asdf:defsystem #:scgi-routes + :name "scgi-routes" + :description "A library for handling routing of SCGI requests." + :author "Thomas Albers Raviola " + :maintainer "Thomas Albers Raviola " + :license "GPL-3" + :version "1.0.0" + :serial t + :depends-on (:alexandria + :quri + :split-sequence + :usocket-server) + :pathname "src" + :components ((:file "package") + (:file "routes")) + :in-order-to ((test-op (test-op "scgi-routes/tests")))) + +(asdf:defsystem #:scgi-routes/tests + :name "scgi-routes tests" + :serial t + :depends-on (:scgi-routes + :fiveam) + :pathname "tests" + :components ((:file "package") + (:file "test-routes")) + ;; :perform (test-op (o c) + ;; (uiop/package:symbol-call "FIASCO" "RUN-TESTS" 'stumpwm-tests)) + ) -- cgit v1.2.3