X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=cl-graph-test.asd;h=e822084997b474d554aefb19f28f8107bcd55034;hb=25d9c9819ce0bb610c024c3ef760660e76653c21;hp=70ca5379f8135c7cea871c533b5d687b5b4d261f;hpb=c0b6bf830a7dc82917dc538ae2daec69df2b2ad9;p=cl-graph.git diff --git a/cl-graph-test.asd b/cl-graph-test.asd index 70ca537..e822084 100644 --- a/cl-graph-test.asd +++ b/cl-graph-test.asd @@ -1,8 +1,4 @@ -;;; -*- 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)) @@ -15,34 +11,19 @@ :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))) + (:module + "dev" + :components + ((:static-file "notes.text")))) :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))