X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=cl-graph-test.asd;fp=cl-graph-test.asd;h=1c58ada290bf9771928c7154418f0bbffcd96231;hb=900a931f109598249ebc33bea50b65abf998ed0b;hp=0000000000000000000000000000000000000000;hpb=5282d117ab0e8b7080bca9683e270f0d2a8f4d5c;p=cl-graph.git diff --git a/cl-graph-test.asd b/cl-graph-test.asd new file mode 100644 index 0000000..1c58ada --- /dev/null +++ b/cl-graph-test.asd @@ -0,0 +1,39 @@ +;;; -*- Mode: Lisp; package: CL-USER; Syntax: Common-lisp; Base: 10 -*- + +#| + +|# + +(in-package :common-lisp-user) +(defpackage #:asdf-cl-graph-test (:use #:cl #:asdf)) +(in-package #:asdf-cl-graph-test) + +(defsystem cl-graph-test + :version "0.1" + :author "Gary Warren King " + :maintainer "Gary Warren King " + :licence "MIT Style License" + :description "Tests for CL-Graph" + + :components ((:module "unit-tests" + :components ((:file "package") + (:file "test*" :depends-on ("package")))) + + (:module "dev" + :components ((:static-file "notes.text")))) + + :in-order-to ((test-op (load-op moptilities-test))) + + :perform (test-op :after (op c) + (describe + (funcall + (intern (symbol-name '#:run-tests) '#:lift) + :suite (intern (symbol-name '#:cl-graph-test) '#:cl-graph-test)))) + :depends-on (cl-graph lift)) + +;;; --------------------------------------------------------------------------- + +(defmethod operation-done-p + ((o test-op) + (c (eql (find-system 'moptilities-test)))) + (values nil))