[project @ Christopher K. Riesbeck's Lisp Unit Testing Library]
[lisp-unit.git] / lisp-unit.asd
blobdc2d01786a78ee2f4db28df282c3771bae7dc403
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp -*-
2 ;;;;
3 ;;;; lisp-unit
4 ;;;;
5 ;;;; Copyright (c) 2007, Thomas M. Hermann
6 ;;;; All rights reserved.
7 ;;;;
8 ;;;; Redistribution and  use  in  source  and  binary  forms, with or without
9 ;;;; modification, are permitted  provided  that the following conditions are
10 ;;;; met:
11 ;;;;
12 ;;;;   o  Redistributions of  source  code  must  retain  the above copyright
13 ;;;;      notice, this list of conditions and the following disclaimer.
14 ;;;;   o  Redistributions in binary  form  must reproduce the above copyright
15 ;;;;      notice, this list of  conditions  and  the  following disclaimer in
16 ;;;;      the  documentation  and/or   other   materials  provided  with  the
17 ;;;;      distribution.
18 ;;;;   o  The names of the contributors may not be used to endorse or promote
19 ;;;;      products derived from this software without  specific prior written
20 ;;;;      permission.
21 ;;;;
22 ;;;; THIS SOFTWARE IS  PROVIDED  BY  THE  COPYRIGHT  HOLDERS AND CONTRIBUTORS
23 ;;;; "AS IS"  AND  ANY  EXPRESS  OR  IMPLIED  WARRANTIES, INCLUDING,  BUT NOT
24 ;;;; LIMITED TO, THE IMPLIED WARRANTIES  OF MERCHANTABILITY AND FITNESS FOR A
25 ;;;; PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
26 ;;;; OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
27 ;;;; EXEMPLARY, OR  CONSEQUENTIAL  DAMAGES  (INCLUDING,  BUT  NOT LIMITED TO,
28 ;;;; PROCUREMENT OF  SUBSTITUTE  GOODS  OR  SERVICES;  LOSS  OF USE, DATA, OR
29 ;;;; PROFITS; OR BUSINESS INTERRUPTION)  HOWEVER  CAUSED AND ON ANY THEORY OF
30 ;;;; LIABILITY, WHETHER  IN  CONTRACT,  STRICT  LIABILITY, OR TORT (INCLUDING
31 ;;;; NEGLIGENCE OR  OTHERWISE)  ARISING  IN  ANY  WAY  OUT OF THE USE OF THIS
32 ;;;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 ;;;;
35 (common-lisp:defpackage #:lisp-unit-system
36   (:use #:common-lisp #:asdf))
38 (common-lisp:in-package #:lisp-unit-system)
40 (defsystem :lisp-unit
41   :description "Common Lisp library that supports unit testing."
42   :version "Draft"
43   :author "Christopher K. Riesbeck <c-riesbeck@northwestern.edu>"
44   :license "MIT"
45   :components ((:file "lisp-unit")))