X-Git-Url: http://git.kpe.io/?p=ptester.git;a=blobdiff_plain;f=ptester.asd;fp=ptester.asd;h=73435aae9dfce62140230bffda28133f9f9ed059;hp=0000000000000000000000000000000000000000;hb=20825c7e1b5f0a878f77a28c1a77d25bfb6c114f;hpb=8cdb46dcf0b4771f764c196c9b51530e236cae9b diff --git a/ptester.asd b/ptester.asd new file mode 100644 index 0000000..73435aa --- /dev/null +++ b/ptester.asd @@ -0,0 +1,28 @@ +;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION +;;;; +;;;; Name: ptester.asd +;;;; Purpose: ASDF definition file for ptester +;;;; Programmer: Kevin M. Rosenberg +;;;; Date Started: Sep 2002 +;;;; +;;;; $Id: ptester.asd,v 1.1 2003/07/20 18:10:22 kevin Exp $ +;;;; +;;;; ************************************************************************* + +(defpackage #:ptester-system (:use #:asdf #:cl)) +(in-package #:ptester-system) + + +(defsystem ptester + :name "ptester" + :author "Kevin Layer, Franz, Inc / Kevin Rosenberg" + :maintainer "Kevin M. Rosenberg " + :licence "LLGPL" + :description "Portable test harness package" + :long-description "ptester is a portable testing framework based on Franz's tester module" + + :components + ((:file "src"))) +