Remove the unused fiveam dependency, get started with stefil!

This commit is contained in:
Brit Butler 2014-09-12 16:33:57 -04:00
parent 81cfcc469e
commit 3ae3c208f7
3 changed files with 2 additions and 19 deletions

View file

@ -31,11 +31,10 @@
(intern "COLESLAW-TESTS" :coleslaw-tests)))) (intern "COLESLAW-TESTS" :coleslaw-tests))))
(defsystem #:coleslaw-tests (defsystem #:coleslaw-tests
:depends-on (coleslaw fiveam) :depends-on (coleslaw stefil)
:pathname "tests/" :pathname "tests/"
:serial t :serial t
:components ((:file "packages") :components ())
(:file "tests")))
(defmethod operation-done-p ((op test-op) (defmethod operation-done-p ((op test-op)
(c (eql (find-system :coleslaw)))) (c (eql (find-system :coleslaw))))

View file

@ -1,3 +0,0 @@
(defpackage :coleslaw-tests
(:use :cl :fiveam)
(:export #:run!))

View file

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