75399370a12c3346399715604472283fac4f7b63
[xptest.git] / debian / xptest.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          xptest.asd
6 ;;;; Purpose:       ASDF definition file for Xptest
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Sep 2002
9 ;;;;
10 ;;;; $Id: xptest.asd,v 1.2 2002/11/08 16:51:40 kevin Exp $
11 ;;;; *************************************************************************
12
13 (in-package :asdf)
14
15 (defsystem :xptest
16   :name "cl-xptest"
17   :author "Craig Brozensky"
18   :version "2002.10.21"
19   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
20   :licence "Public domain"
21   :description "Extreme Programming Testing Suite"
22   :long-description "The XPTEST package is toolkit for building test suites, very much inspired by the test frameworks that the Extreme Programming crew made available for Smalltalk an other languages."
23   
24   :perform (load-op :after (op xptest)
25             (pushnew :xptest cl:*features*))
26   
27   :components
28   ((:file "package")
29    (:file "xptestsuite" :depends-on ("package"))))