Replaced some code that depends on copying
[cl-graph.git] / cl-graph-test.asd
1 ;;; -*- Mode: Lisp; package: CL-USER; Syntax: Common-lisp; Base: 10 -*-
2
3 #|
4
5 |#
6
7 (in-package :common-lisp-user)
8 (defpackage #:asdf-cl-graph-test (:use #:cl #:asdf))
9 (in-package #:asdf-cl-graph-test)
10
11 (defsystem cl-graph-test
12   :version "0.1"
13   :author "Gary Warren King <gwking@metabang.com>"
14   :maintainer "Gary Warren King <gwking@metabang.com>"
15   :licence "MIT Style License"
16   :description "Tests for CL-Graph"
17
18   :components ((:module "unit-tests"
19                         :components ((:file "package")
20                                      (:file "test*" :depends-on ("package"))))
21                
22                (:module "dev"
23                         :components ((:static-file "notes.text"))))
24   
25   :in-order-to ((test-op (load-op moptilities-test)))
26   
27   :perform (test-op :after (op c)
28                     (describe
29                      (funcall 
30                       (intern (symbol-name '#:run-tests) '#:lift) 
31                       :suite (intern (symbol-name '#:cl-graph-test) '#:cl-graph-test))))
32   :depends-on (cl-graph lift))
33
34 ;;; ---------------------------------------------------------------------------
35
36 (defmethod operation-done-p 
37            ((o test-op)
38             (c (eql (find-system 'moptilities-test))))
39   (values nil))