a9486ac3eeebacb6646de9e327ae262e96f4770a
[clsql.git] / clsql-tests.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; File:    clsql-tests.asd
6 ;;;; Author:  Marcus Pearce <m.t.pearce@city.ac.uk>
7 ;;;; Created: 30/03/2004
8 ;;;; Updated: <04/04/2004 12:34:41 marcusp>
9 ;;;;
10 ;;;; $Id: clsql-classic.asd 8847 2004-04-07 14:38:14Z kevin $
11 ;;;;
12 ;;;; CLSQL users are granted the rights to distribute and use this software
13 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
14 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
15 ;;;; *************************************************************************
16 ;;;; ======================================================================
17
18 (in-package #:cl-user)
19
20 (asdf:defsystem clsql-tests
21     :name "CLSQL Tests"
22     :author ""
23     :maintainer ""
24     :version ""
25     :licence ""
26     :description "A regression test suite for CLSQL-USQL."
27     :components 
28     ((:module tests
29               :serial t
30               :components ((:file "package")
31                            (:file "test-init")
32                            (:file "test-connection")
33                            (:file "test-fddl")
34                            (:file "test-fdml")
35                            (:file "test-ooddl")
36                            (:file "test-oodml")
37                            (:file "test-syntax"))))
38     :depends-on (:clsql :rt))