Make the test scaffolding actually work
    
        | author | 
        Steve Losh <steve@stevelosh.com> | 
    
    
        | date | 
        Sun, 06 Nov 2016 12:35:34 +0000 | 
    
    
    
        | parents | 
        96febb435c83 
 | 
    
    
        | children | 
        8a0ab75bd0df
 | 
    
    
        | branches/tags | 
        (none) | 
    
    
        | files | 
        cl-digraph.asd test/tests.lisp  | 
    
Changes
    
--- a/cl-digraph.asd	Sun Nov 06 12:28:54 2016 +0000
+++ b/cl-digraph.asd	Sun Nov 06 12:35:34 2016 +0000
@@ -9,6 +9,8 @@
 
   :depends-on ()
 
+  :in-order-to ((asdf:test-op (asdf:test-op :digraph-test)))
+
   :serial t
   :components ((:module "vendor" :serial t
                 :components ((:file "quickutils-package")
--- a/test/tests.lisp	Sun Nov 06 12:28:54 2016 +0000
+++ b/test/tests.lisp	Sun Nov 06 12:35:34 2016 +0000
@@ -7,3 +7,6 @@
 
 (defun run-tests ()
   (1am:run))
+
+(define-test foo
+  (is (= 1 2)))