Fixed a buglet with invalid declare ignores
[cl-graph.git] / cl-graph-test.asd
index 1c58ada..e822084 100644 (file)
@@ -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))
   :licence "MIT Style License"
   :description "Tests for CL-Graph"
 
-  :components ((:module "unit-tests"
-                        :components ((:file "package")
-                                     (:file "test*" :depends-on ("package"))))
+  :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 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))))
+               (:module 
+               "dev"
+               :components
+               ((:static-file "notes.text"))))
   :depends-on (cl-graph lift))
-
-;;; ---------------------------------------------------------------------------
-
-(defmethod operation-done-p 
-           ((o test-op)
-            (c (eql (find-system 'moptilities-test))))
-  (values nil))