X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=cl-graph-test.asd;h=b5532ed11f3855362b3debb9415802e15e76bbba;hb=46dc073919f9c43c4c17059d8b6c84cc2d1729e3;hp=529501a92ca4d814be9a416c7371ac0e6aaa4400;hpb=363f6a0a95ffb2e6c7883c37b1fe999ffe28db1f;p=cl-graph.git diff --git a/cl-graph-test.asd b/cl-graph-test.asd index 529501a..b5532ed 100644 --- a/cl-graph-test.asd +++ b/cl-graph-test.asd @@ -5,20 +5,27 @@ (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-metrics") + ;;(:file "test-graph-algorithms") + (:file "test-api") )) (:module