r8850: remove usql files
[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."
27     :depends-on (clsql rt)
28     :components 
29     ((:module tests
30               :serial t
31               :components ((:file "package")
32                            (:file "test-init")
33                            (:file "test-connection")
34                            (:file "test-fddl")
35                            (:file "test-fdml")
36                            (:file "test-ooddl")
37                            (:file "test-oodml")
38                            (:file "test-syntax")))))