-
Notifications
You must be signed in to change notification settings - Fork 10
/
check-it.asd
49 lines (46 loc) · 1.54 KB
/
check-it.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
;;;; check-it.asd
(defpackage :check-it-system
(:use :cl :asdf))
(in-package :check-it-system)
(defsystem :check-it
:name "check-it"
:serial t
:author "Kyle Littler"
:license "LLGPL"
:description "A randomized property-based testing tool for Common Lisp."
:long-description
#.(uiop:read-file-string
(uiop:subpathname *load-pathname* "README.md"))
:homepage "https://github.com/DalekBaldwin/check-it"
:version "0.1.0"
:components
((:static-file "check-it.asd")
(:module :src
:components ((:file "package")
(:file "util")
(:file "generators")
(:file "regenerate")
(:file "shrink")
(:file "check-it"))
:serial t))
:depends-on (:alexandria :closer-mop :optima)
:in-order-to ((test-op (load-op :check-it-test)))
:perform (test-op :after (op c)
(funcall
(intern #.(string '#:run-all-tests)
:check-it-test))))
(defsystem :check-it-test
:name "check-it-test"
:serial t
:author "Kyle Littler"
:license "LLGPL"
:description "Tests for check-it."
:components
((:module :test
:components ((:file "package")
(:file "check-it-test")
(:file "deterministic-tests")
(:file "randomized-tests")
(:file "destructive-tests")
(:file "for-travis"))))
:depends-on (:check-it :stefil))