-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathorg.melusina.confidence.asd
65 lines (58 loc) · 2.02 KB
/
org.melusina.confidence.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
;;;; org.melusina.confidence.asd — System definition for Confidence
;;;; Confidence (https://github.com/melusina-org/cl-confidence)
;;;; This file is part of Confidence.
;;;;
;;;; Copyright © 2019–2024 Michaël Le Barbier
;;;; All rights reserved.
;;;; This file must be used under the terms of the MIT License.
;;;; This source file is licensed as described in the file LICENSE, which
;;;; you should have received as part of this distribution. The terms
;;;; are also available at https://opensource.org/licenses/MIT
(asdf:defsystem org.melusina.confidence
:description "A Simple Interactive Test Framework for Common Lisp"
:author "Michaël Le Barbier"
:license "MIT"
:depends-on (:alexandria)
:components
((:module "src"
:components ((:file "package")
(:file "utilities")
(:file "assertion")
(:file "result")
(:file "testcase")
(:file "entrypoint")))))
(asdf:defsystem org.melusina.confidence/testsuite
:description "A Simple Interactive Test Framework for Common Lisp"
:author "Michaël Le Barbier"
:license "MIT"
:depends-on (:alexandria :org.melusina.confidence)
:components
((:module "testsuite"
:components ((:file "package")
(:file "utilities")
(:file "assertion")
(:file "result")
(:file "testcase")
(:file "entrypoint")))))
(asdf:defsystem #:org.melusina.confidence/development
:description "Development tools for Confidence"
:author "Michaël Le Barbier"
:license "MIT License"
:depends-on (#:org.melusina.atelier)
:components
((:module "libexec/lisp"
:components ((:file "development")))))
(asdf:defsystem #:org.melusina.confidence/user
:description "System for Confidence Users"
:author "Michaël Le Barbier"
:license "MIT License"
:depends-on (#:org.melusina.confidence
#:org.melusina.confidence/testsuite
#:org.melusina.confidence/development)
:components
((:module "libexec"
:components
((:module "lisp"
:components
((:file "user")))))))
;;;; End of file `org.melusina.confidence.asd'