r4544: Auto commit for Debian build
[xptest.git] / 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.7 2003/04/19 16:23:56 kevin Exp $
11 ;;;; *************************************************************************
12
13 (defpackage #:xptest-system (:use #:asdf #:cl))
14 (in-package #:xptest-system)
15
16 (defsystem :xptest
17   :name "cl-xptest"
18   :author "Craig Brozensky"
19   :version "2003.04.21"
20   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
21   :licence "Public domain"
22   :description "Extreme Programming Testing Suite"
23   :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."
24   
25   :perform (load-op :after (op xptest)
26             (pushnew :xptest cl:*features*))
27   
28   :components
29   ((:file "xptestsuite")))