r8821: integrate usql support
[clsql.git] / clsql-usql-tests.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; ======================================================================
3 ;;;; File:    clsql-usql-tests.asd
4 ;;;; Author:  Marcus Pearce <m.t.pearce@city.ac.uk>
5 ;;;; Created: 30/03/2004
6 ;;;; Updated: <04/04/2004 12:34:41 marcusp>
7 ;;;; ======================================================================
8 ;;;;
9 ;;;; Description ==========================================================
10 ;;;; ======================================================================
11 ;;;;
12 ;;;; ASDF system definition for CLSQL-USQL test suite.
13 ;;;;
14 ;;;; ======================================================================
15
16 (in-package #:cl-user)
17
18 (asdf:defsystem :clsql-usql-tests
19     :name "CLSQL-USQL Tests"
20     :author ""
21     :maintainer ""
22     :version ""
23     :licence ""
24     :description "A regression test suite for CLSQL-USQL."
25     :components 
26     ((:module usql-tests
27               :components ((:file "package")
28                            (:file "test-init")
29                            (:file "test-connection")
30                            (:file "test-fddl")
31                            (:file "test-fdml")
32                            (:file "test-ooddl")
33                            (:file "test-oodml")
34                            (:file "test-syntax"))))
35     :depends-on (:clsql-usql :rt))