soften parent change to Lispworks-only, as it causes some problems for Clozure
[clsql/s11.git] / tests / package.lisp
blob9103a32ee45c0476be86e741de5beed64add3d4d
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; ======================================================================
3 ;;;; File: package.lisp
4 ;;;; Authors: Marcus Pearce <m.t.pearce@city.ac.uk> and Kevin Rosenberg
5 ;;;; Created: 30/03/2004
6 ;;;; Updated: $Id$
7 ;;;;
8 ;;;; Package definition for CLSQL test suite.
9 ;;;;
10 ;;;; This file is part of CLSQL.
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 ;;;; ======================================================================
17 (in-package #:cl-user)
19 (defpackage #:clsql-tests
20 (:use #:clsql #:common-lisp #:rtest)
21 (:export
22 #:run-tests
23 #:run-tests-append-report-file
24 #:run-benchmarks
25 #:run-benchmarks-append-report-file
26 #:summarize-test-report
27 #:test-initialise-database
28 #:test-connect-to-database
30 (:documentation "Regression tests for CLSQL."))