X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=clsql-tests.asd;fp=clsql-tests.asd;h=a9486ac3eeebacb6646de9e327ae262e96f4770a;hp=0000000000000000000000000000000000000000;hb=7f0e4a65d1b425f2fa58fc7cce8296c1a6c52c2f;hpb=39d3fefaebf35a19a211d1ab6552d7ff54faccd2 diff --git a/clsql-tests.asd b/clsql-tests.asd new file mode 100644 index 0000000..a9486ac --- /dev/null +++ b/clsql-tests.asd @@ -0,0 +1,38 @@ +;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION +;;;; +;;;; File: clsql-tests.asd +;;;; Author: Marcus Pearce +;;;; Created: 30/03/2004 +;;;; Updated: <04/04/2004 12:34:41 marcusp> +;;;; +;;;; $Id: clsql-classic.asd 8847 2004-04-07 14:38:14Z kevin $ +;;;; +;;;; CLSQL users are granted the rights to distribute and use this software +;;;; as governed by the terms of the Lisp Lesser GNU Public License +;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. +;;;; ************************************************************************* +;;;; ====================================================================== + +(in-package #:cl-user) + +(asdf:defsystem clsql-tests + :name "CLSQL Tests" + :author "" + :maintainer "" + :version "" + :licence "" + :description "A regression test suite for CLSQL-USQL." + :components + ((:module tests + :serial t + :components ((:file "package") + (:file "test-init") + (:file "test-connection") + (:file "test-fddl") + (:file "test-fdml") + (:file "test-ooddl") + (:file "test-oodml") + (:file "test-syntax")))) + :depends-on (:clsql :rt))