Skip to content

Commit

Permalink
Add scaffolding and ASDF system for Parachute test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
thephoeron committed Jul 18, 2023
1 parent fb454e5 commit 01abe79
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
15 changes: 15 additions & 0 deletions baphomet.asd
Expand Up @@ -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 <thephoeron@protonmail.com>"
: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")))))
1 change: 1 addition & 0 deletions test/suite.lisp
@@ -0,0 +1 @@
(in-package :baphomet/sys)

0 comments on commit 01abe79

Please sign in to comment.