forked from kennytilton/cells
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcells-test.asd
29 lines (26 loc) · 1.19 KB
/
cells-test.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
(asdf:defsystem :cells-test
:name "cells-test"
:author "Kenny Tilton <[email protected]>"
:maintainer "Kenny Tilton <[email protected]>"
:licence "MIT Style"
:description "Cells Regression Test/Documentation"
:long-description "Informatively-commented regression tests for Cells"
:serial t
:depends-on (:cells)
:components ((:module "cells-test"
:serial t
:components ((:file "test")
(:file "hello-world")
(:file "test-kid-slotting")
(:file "test-lazy")
(:file "person")
(:file "df-interference")
(:file "test-family")
(:file "output-setf")
(:file "test-cycle")
(:file "test-ephemeral")
(:file "test-synapse")
(:file "deep-cells")))))
(defmethod perform :after ((op load-op) (system (eql (find-system :cells-test))))
(funcall (find-symbol "TEST-CELLS" "CELLS")))