X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=cl-graph-test.asd;h=529501a92ca4d814be9a416c7371ac0e6aaa4400;hb=e95dd49b959e672614b7eb2c109c2d842b6f4a23;hp=70ca5379f8135c7cea871c533b5d687b5b4d261f;hpb=b9b77eaf8b04ffe94412d5ff49cacae2d19ebb65;p=cl-graph.git diff --git a/cl-graph-test.asd b/cl-graph-test.asd index 70ca537..529501a 100644 --- a/cl-graph-test.asd +++ b/cl-graph-test.asd @@ -1,12 +1,8 @@ -;;; -*- Mode: Lisp; package: CL-USER; Syntax: Common-lisp; Base: 10 -*- - -#| - -|# +;;; -*- 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) +(defpackage #:cl-graph-test-system (:use #:cl #:asdf)) +(in-package #:cl-graph-test-system) (defsystem cl-graph-test :version "0.1" @@ -14,35 +10,19 @@ :maintainer "Gary Warren King " :licence "MIT Style License" :description "Tests for CL-Graph" - - :components ((:module "unit-tests" - :components ((:file "package") - (:file "test-graph" :depends-on ("package")) - (:file "test-graph-container" :depends-on ("test-graph")) - (:file "test-connected-components" :depends-on ("test-graph")) - (:file "test-graph-metrics" :depends-on ("test-graph")) - (:file "test-graph-algorithms" :depends-on ("test-graph")) - )) + :components ((:module + "unit-tests" + :components + ((:file "package") + (:file "test-graph" :depends-on ("package")) + (:file "test-graph-container" :depends-on ("test-graph")) + (:file "test-connected-components" :depends-on ("test-graph")) + (:file "test-graph-metrics" :depends-on ("test-graph")) + (:file "test-graph-algorithms" :depends-on ("test-graph")) + )) - (:module "dev" - :components ((:static-file "notes.text")))) - - :in-order-to ((test-op (load-op cl-graph-test))) - :depends-on (cl-graph lift)) - -;;; --------------------------------------------------------------------------- - -(defmethod perform :after ((op test-op ) (c (eql (find-system 'cl-graph-test)))) - (describe - (funcall - (intern (symbol-name '#:run-tests) '#:lift) - :suite (intern (symbol-name '#:cl-graph-test) '#:cl-graph-test)))) - -;;; --------------------------------------------------------------------------- - -(defmethod perform :after ((o load-op) (c (eql (find-system 'cl-graph-test)))) - ) - -(defmethod operation-done-p ((o test-op) (c (eql (find-system 'cl-graph-test)))) - ;; testing is never done... - (values nil)) + (:module + "dev" + :components + ((:static-file "notes.text")))) + :depends-on (:cl-graph :lift))