9fa45a28ef1cf76d74e8de514ad109f7de60f978
[ptester.git] / tester.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          tester.asd
6 ;;;; Purpose:       ASDF definition file for Tester
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Sep 2002
9 ;;;;
10 ;;;; $Id: tester.asd,v 1.5 2003/07/18 19:48:36 kevin Exp $
11 ;;;;
12 ;;;; This file, part of cl-tester, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; cl-tester users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the GNU Lesser General Public License 
16 ;;;; (http://www.gnu.org/licenses/lgpl.html)
17 ;;;; *************************************************************************
18
19 (defpackage #:tester-system (:use #:asdf #:cl))
20 (in-package #:tester-system)
21
22
23 (defsystem tester
24   :name "cl-tester"
25   :author "Kevin Layer, Franz, Inc"
26   :version "2.2.12.2.6.1"
27   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
28   :licence "GNU Lesser General Public License"
29   :description "Franz's Test Harness Package"
30   :long-description "Tester provides an framework for creating automated testing progams."
31   
32   :components
33   ((:file "tester")))
34