From 3ae3c208f72ba7e4200f37a4ef1e9857c9842e71 Mon Sep 17 00:00:00 2001 From: Brit Butler Date: Fri, 12 Sep 2014 16:33:57 -0400 Subject: [PATCH] Remove the unused fiveam dependency, get started with stefil! --- coleslaw.asd | 5 ++--- tests/packages.lisp | 3 --- tests/tests.lisp | 13 ------------- 3 files changed, 2 insertions(+), 19 deletions(-) delete mode 100644 tests/packages.lisp delete mode 100644 tests/tests.lisp diff --git a/coleslaw.asd b/coleslaw.asd index 40ab023..1de39e7 100644 --- a/coleslaw.asd +++ b/coleslaw.asd @@ -31,11 +31,10 @@ (intern "COLESLAW-TESTS" :coleslaw-tests)))) (defsystem #:coleslaw-tests - :depends-on (coleslaw fiveam) + :depends-on (coleslaw stefil) :pathname "tests/" :serial t - :components ((:file "packages") - (:file "tests"))) + :components ()) (defmethod operation-done-p ((op test-op) (c (eql (find-system :coleslaw)))) diff --git a/tests/packages.lisp b/tests/packages.lisp deleted file mode 100644 index 6661770..0000000 --- a/tests/packages.lisp +++ /dev/null @@ -1,3 +0,0 @@ -(defpackage :coleslaw-tests - (:use :cl :fiveam) - (:export #:run!)) diff --git a/tests/tests.lisp b/tests/tests.lisp deleted file mode 100644 index 891c9c4..0000000 --- a/tests/tests.lisp +++ /dev/null @@ -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 ""))))