-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcl-rx-test.asd
30 lines (27 loc) · 906 Bytes
/
cl-rx-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
29
30
#|
This file is a part of cl-rx project.
Copyright (c) 2016 Yoandy Rodriguez Martinez
|#
(in-package :cl-user)
(defpackage cl-rx-test-asd
(:use :cl :asdf))
(in-package :cl-rx-test-asd)
(defsystem cl-rx-test
:author "Yoandy Rodriguez Martinez"
:license "MIT"
:depends-on (:cl-rx
:prove)
:components ((:module "t"
:serial t
:components
((:test-file "base")
(:test-file "pqueue")
(:test-file "schedulers")
(:test-file "operators-create")
(:test-file "operators-filter")
(:test-file "operators-transform"))))
:description "Test system for cl-rx"
:defsystem-depends-on (:prove-asdf)
:perform (test-op :after (op c)
(funcall (intern #.(string :run-test-system) :prove-asdf) c)
(asdf:clear-system c)))