diff --git a/baphomet.asd b/baphomet.asd index fcbd878..6a45c9e 100644 --- a/baphomet.asd +++ b/baphomet.asd @@ -43,3 +43,18 @@ :perform (load-op :after (op c) (provide :baphomet) (pushnew :baphomet *features*))) + +(defsystem baphomet/test + :description "Test suite for BAPHOMET." + :author "\"the Phoeron\" Colin J.E. Lupton " + :homepage "https://thephoeron.github.io/baphomet/" + :source-control (:git "https://github.com/thephoeron/baphomet") + :bug-tracker "https://github.com/thephoeron/baphomet/issues" + :mailto "thephoeron@protonmail.com" + :version (:read-file-form "VERSION") + :licence "MIT" + :depends-on (baphomet + parachute) + :serial t + :components ((:module test + :components ((:file "suite"))))) diff --git a/test/suite.lisp b/test/suite.lisp new file mode 100644 index 0000000..d8328fd --- /dev/null +++ b/test/suite.lisp @@ -0,0 +1 @@ +(in-package :baphomet/sys)