X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=cl-graph-test.asd;h=83c980cdad9c1474f708f3a9b50c77d55a02a1f2;hb=80af22e39e0787769c4c9f455bb1d2c95e2343b5;hp=529501a92ca4d814be9a416c7371ac0e6aaa4400;hpb=09ba252fcab440337424122782e305db8f585e83;p=cl-graph.git diff --git a/cl-graph-test.asd b/cl-graph-test.asd index 529501a..83c980c 100644 --- a/cl-graph-test.asd +++ b/cl-graph-test.asd @@ -5,20 +5,26 @@ (in-package #:cl-graph-test-system) (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 ((:module + "setup" + :pathname "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 + "unit-tests" + :pathname "unit-tests/" + :depends-on ("setup") + :components + ((:file "test-graph-container") + (:file "test-connected-components") + ;;(:file "test-graph-algorithms") + (:file "test-api") )) (:module @@ -26,3 +32,13 @@ :components ((:static-file "notes.text")))) :depends-on (:cl-graph :lift)) + +;; 2008-09-24 - I don't know if this will work or not +;; i.e., will it happen at the right time wrt everything else +#+asdf-system-connections +(asdf:defsystem-connection cl-graph-test-and-cl-mathstats + :requires (cl-graph moptilities) + :components ((:module + "unit-tests" + :components + ((:file "test-graph-metrics")))))