Add a sanity test to prevent future embarrassment.

This commit is contained in:
Brit Butler 2013-04-21 14:27:08 -04:00
parent a7754c5246
commit 9a3a7d7f50
2 changed files with 15 additions and 1 deletions

View file

@ -5,7 +5,9 @@
#:content
#:index
#:content-tags
#:index-posts))
#:index-posts
#:make-tag
#:tag-slug=))
(in-package :coleslaw-mathjax)

View file

@ -1 +1,13 @@
(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 nil))))