2012-08-14 23:56:25 -04:00
|
|
|
(defsystem #:coleslaw
|
2011-02-19 18:25:02 -05:00
|
|
|
:name "coleslaw-core"
|
2011-04-16 15:45:37 -04:00
|
|
|
:description "Flexible Lisp Blogware"
|
2012-08-14 23:56:25 -04:00
|
|
|
:version "0.0.3"
|
|
|
|
:license "BSD"
|
2011-02-19 18:25:02 -05:00
|
|
|
:author "Brit Butler <redline6561@gmail.com>"
|
2012-08-14 23:56:25 -04:00
|
|
|
:pathname "src/"
|
|
|
|
:depends-on (:closure-template :cl-fad :local-time :alexandria)
|
|
|
|
:serial t
|
|
|
|
:components ((:file "packages")
|
|
|
|
(:file "coleslaw")
|
|
|
|
(:file "themes")
|
|
|
|
(:file "comments")
|
|
|
|
(:file "posts")
|
|
|
|
(:file "indices")
|
|
|
|
(:file "plugins"))
|
|
|
|
:in-order-to ((test-op (load-op coleslaw-tests)))
|
|
|
|
:perform (test-op :after (op c)
|
|
|
|
(funcall (intern "RUN!" :coleslaw-tests)
|
|
|
|
(intern "COLESLAW-TESTS" :coleslaw-tests))))
|
|
|
|
|
|
|
|
(defsystem #:coleslaw-tests
|
|
|
|
:depends-on (coleslaw fiveam)
|
|
|
|
:pathname "tests/"
|
|
|
|
:serial t
|
|
|
|
:components ((:file "packages")
|
|
|
|
(:file "tests")))
|
|
|
|
|
|
|
|
(defmethod operation-done-p ((op test-op)
|
|
|
|
(c (eql (find-system :coleslaw))))
|
|
|
|
(values nil))
|
|
|
|
|