forked from fukamachi/mito
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmito-test.asd
More file actions
35 lines (32 loc) · 1.09 KB
/
mito-test.asd
File metadata and controls
35 lines (32 loc) · 1.09 KB
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 mito project.
Copyright (c) 2015 Eitaro Fukamachi (e.arrows@gmail.com)
|#
(in-package :cl-user)
(defpackage mito-test-asd
(:use :cl :asdf))
(in-package :mito-test-asd)
(defsystem mito-test
:author "Eitaro Fukamachi"
:license "LLGPL"
:depends-on (:mito
:prove)
:components ((:module "t"
:components
((:file "util")
(:file "db/main")
(:test-file "db/sqlite3")
(:test-file "db/mysql")
(:test-file "db/postgres")
(:test-file "class")
(:test-file "dao")
(:test-file "migration/sqlite3")
(:test-file "migration/mysql")
(:test-file "migration/postgres")
(:test-file "postgres-types")
(:test-file "mixin"))))
:description "Test system for mito"
:defsystem-depends-on (:prove-asdf)
:perform (test-op :after (op c)
(funcall (intern #.(string :run-test-system) :prove-asdf) c)
(asdf:clear-system c)))