-
Notifications
You must be signed in to change notification settings - Fork 4
/
alice-tests.asd
35 lines (25 loc) · 1.25 KB
/
alice-tests.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
;;; alice-tests.asd
(asdf:defsystem #:alice-tests
:serial t
:long-name "Alice Margatroid Test Suite"
:author "Jacek Złydach"
:version (:read-file-form "version.lisp" :at (1 2 2))
:description "Tests for Alice, the IRC bot."
:license "Teaware - do whatever you want with it, but I wouldn't mind getting invited for a cup of tea ;)."
:homepage "https://github.com/TeMPOraL/alice"
:bug-tracker "https://github.com/TeMPOraL/alice/issues"
:source-control (:git "https://github.com/TeMPOraL/alice.git")
:mailto "[email protected]"
:encoding :utf-8
:depends-on (#:alice
#:fiveam)
:perform (test-op (o s)
(uiop:symbol-call :alice-tests '#:run-all))
:components ((:module "tests"
:components ((:file "package")
(:file "suites")
(:module "test-suites"
:components ((:file "language")
(:file "string-utils")
(:module "behavioral"
:components ((:file "input-matchers")))))))))