coleslaw/tests/tests.lisp
2014-05-01 18:53:06 -04:00

13 lines
287 B
Common Lisp

(in-package :coleslaw-tests)
(defmacro deftest (name docstring &body body)
`(test ,name
,docstring
,@body))
(def-suite coleslaw-tests)
(in-suite coleslaw-tests)
(deftest sanity-test
"A blog should compile and deploy correctly."
(is (zerop (coleslaw:main))))