r5323: *** empty log message ***
This commit is contained in:
29
puri.asd
Normal file
29
puri.asd
Normal file
@ -0,0 +1,29 @@
|
||||
;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
|
||||
;;;; Programmer: Kevin Rosenberg
|
||||
|
||||
|
||||
(in-package #:cl-user)
|
||||
(defpackage #:puri-system (:use #:cl #:asdf))
|
||||
(in-package #:puri-system)
|
||||
|
||||
|
||||
(defsystem puri
|
||||
:name "cl-puri"
|
||||
:maintainer "Kevin M. Rosenberg <kmr@debian.org>"
|
||||
:licence "GNU Lesser General Public License"
|
||||
:description "Portable Universal Resource Indentifier Library"
|
||||
:components
|
||||
((:file "src")))
|
||||
|
||||
(defmethod perform ((o test-op) (c (eql (find-system 'puri))))
|
||||
(oos 'load-op 'puri-tests)
|
||||
(oos 'test-op 'puri-tests))
|
||||
|
||||
(defsystem puri-tests
|
||||
:depends-on (:rt :tester)
|
||||
:components
|
||||
((:file "tests")))
|
||||
|
||||
(defmethod perform ((o test-op) (c (eql (find-system 'puri-tests))))
|
||||
(or (funcall (intern (symbol-name '#:do-tests) (find-package :rt)))
|
||||
(error "test-op failed")))
|
||||
Reference in New Issue
Block a user