X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=puri.asd;h=22879b0a6fa12ac685afc2f15ec818c8ddd226d1;hb=HEAD;hp=1e09b66b1987d26bff6a452e46194a1006ddcbda;hpb=9e5b1ca169d5d26c7195643f02325655eec515e2;p=puri-unicode.git diff --git a/puri.asd b/puri.asd index 1e09b66..22879b0 100644 --- a/puri.asd +++ b/puri.asd @@ -12,6 +12,7 @@ :maintainer "Kevin M. Rosenberg " :licence "GNU Lesser General Public License" :description "Portable Universal Resource Indentifier Library" + :depends-on (#:babel #:idna) :components ((:file "src"))) @@ -20,10 +21,14 @@ (oos 'test-op 'puri-tests)) (defsystem puri-tests - :depends-on (:rt :tester) + :depends-on (:puri :ptester) :components ((:file "tests"))) (defmethod perform ((o test-op) (c (eql (find-system 'puri-tests)))) - (or (funcall (intern (symbol-name '#:do-tests) (find-package :rt))) + (or (funcall (intern (symbol-name '#:do-tests) + (find-package :puri-tests))) (error "test-op failed"))) + +(defmethod operation-done-p ((o test-op) (c (eql (find-system 'puri-tests)))) + (values nil))