-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcacau.asd
42 lines (41 loc) · 1.45 KB
/
cacau.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
29
30
31
32
33
34
35
36
37
38
39
40
41
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
(defsystem :cacau
:author "noloop <[email protected]>"
:maintainer "noloop <[email protected]>"
:license "GPLv3"
:version "1.0.0"
:homepage "https://github.com/noloop/cacau"
:bug-tracker "https://github.com/noloop/cacau/issues"
:source-control (:git "[email protected]:noloop/cacau.git")
:description "Test Runner in Common Lisp."
:depends-on (:eventbus :assertion-error)
:serial t
:components ((:module "src"
:components
((:file "package")
(:file "utils")
(:module "kernel"
:components
((:file "timer")
(:file "runnable")
(:file "list-iterator")
(:file "test")
(:file "hook")
(:file "suite")
(:file "runner-listeners")
(:file "runner")))
(:module "reporters"
:components
((:file "base")
(:file "min")
(:file "list")
(:file "full")))
(:file "cacau")
(:module "interfaces"
:components
((:file "common")
(:file "cl")
(:file "bdd")
(:file "tdd")
(:file "no-spaghetti"))))))
:in-order-to ((test-op (test-op :cacau-test))))