forked from fukamachi/cl-dbi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdbi-test.asd
35 lines (32 loc) · 989 Bytes
/
dbi-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
31
32
33
34
35
#|
This file is a part of CL-DBI project.
Copyright (c) 2011 Eitaro Fukamachi ([email protected])
|#
(in-package :cl-user)
(defpackage dbi-test-asd
(:use :cl :asdf))
(in-package :dbi-test-asd)
(defsystem dbi-test
:author "Eitaro Fukamachi"
:license "LLGPL"
:depends-on (:dbi
:prove
:closer-mop
:cl-syntax
:cl-syntax-annot
:trivial-types)
:components ((:module "src"
:components
((:file "test")))
(:module "t"
:depends-on ("src")
:components
((:test-file "driver")
(:module "dbd"
:components
((:test-file "sqlite3")
(:test-file "postgres")
(:test-file "mysql"))))))
:defsystem-depends-on (:prove)
:perform (test-op :after (op c)
(funcall (intern #.(string :run-test-system) :prove) c)))