Flexible Lisp Blogware. Fork for personal use. Mirrored from https://github.com/kingcons/coleslaw originally.

tests.lisp 290B

1234567891011121314
  1. (in-package :coleslaw-tests)
  2. (defmacro deftest (name docstring &body body)
  3. `(test ,name
  4. ,docstring
  5. ,@body))
  6. (def-suite coleslaw-tests)
  7. (in-suite coleslaw-tests)
  8. (deftest sanity-test
  9. "A blog should compile and deploy correctly."
  10. (is (zerop (coleslaw:main ""))))