X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql.asd;h=f7c9d366971c0e6bdabd6f73793b3fe15f15cc3b;hb=66b64b326d109d6cb0d96923b60ed6aaeaeabb21;hp=f74e884b009bea3b7a8fb927f83794bee750a226;hpb=73cf858d596ad1d51c745b478292433617cf9d72;p=clsql.git diff --git a/clsql.asd b/clsql.asd index f74e884..f7c9d36 100644 --- a/clsql.asd +++ b/clsql.asd @@ -14,7 +14,11 @@ ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. ;;;; ************************************************************************* -(asdf:defsystem #:clsql +(in-package #:cl-user) +(defpackage #:clsql-system (:use #:asdf #:cl)) +(in-package #:clsql-system) + +(defsystem #:clsql :name "CLSQL" :author "" :maintainer "" @@ -50,3 +54,7 @@ a functional and an object oriented interface." (:file "objects" :depends-on ("metaclasses"))) :depends-on (:functional)))))) + +(defmethod perform ((o test-op) (c (eql (find-system 'clsql)))) + (operate 'load-op 'clsql-tests) + (operate 'test-op 'clsql-tests))