-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathinquisitor-test.asd
More file actions
30 lines (27 loc) · 897 Bytes
/
inquisitor-test.asd
File metadata and controls
30 lines (27 loc) · 897 Bytes
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 inquisitor project.
Copyright (c) 2015 Shinichi Tanaka (shinichi.tanaka45@gmail.com)
|#
(in-package :cl-user)
(defpackage inquisitor-test-asd
(:use :cl :asdf))
(in-package :inquisitor-test-asd)
(defsystem inquisitor-test
:author "Shinichi Tanaka"
:license "MIT"
:depends-on (:inquisitor
:babel
:flexi-streams
:prove)
:components ((:module "t"
:components
((:file "names")
(:test-file "util")
(:test-file "eol")
(:test-file "encoding")
(:test-file "external-format")
(:test-file "inquisitor"))))
:defsystem-depends-on (:prove-asdf)
:perform (test-op :after (op c)
(funcall (intern #.(string :run-test-system) :prove-asdf) c)
(asdf:clear-system c)))