Sfoglia il codice sorgente

Remove the unused fiveam dependency, get started with stefil!

Brit Butler 10 anni fa
parent
commit
3ae3c208f7
3 ha cambiato i file con 2 aggiunte e 19 eliminazioni
  1. 2 3
      coleslaw.asd
  2. 0 3
      tests/packages.lisp
  3. 0 13
      tests/tests.lisp

+ 2 - 3
coleslaw.asd

@@ -31,11 +31,10 @@
31 31
                              (intern "COLESLAW-TESTS" :coleslaw-tests))))
32 32
 
33 33
 (defsystem #:coleslaw-tests
34
-  :depends-on (coleslaw fiveam)
34
+  :depends-on (coleslaw stefil)
35 35
   :pathname "tests/"
36 36
   :serial t
37
-  :components ((:file "packages")
38
-               (:file "tests")))
37
+  :components ())
39 38
 
40 39
 (defmethod operation-done-p ((op test-op)
41 40
                              (c (eql (find-system :coleslaw))))

+ 0 - 3
tests/packages.lisp

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

+ 0 - 13
tests/tests.lisp

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