We need at least metatilities-base 0.6.0
[cl-graph.git] / cl-graph-test.asd
1 ;;; -*- Mode: Lisp; package: cl-user; Syntax: Common-lisp; Base: 10 -*-
2
3 (in-package :common-lisp-user)
4 (defpackage #:cl-graph-test-system (:use #:cl #:asdf))
5 (in-package #:cl-graph-test-system)
6
7 (defsystem cl-graph-test
8   :version "0.1"
9   :author "Gary Warren King <gwking@metabang.com>"
10   :maintainer "Gary Warren King <gwking@metabang.com>"
11   :licence "MIT Style License"
12   :description "Tests for CL-Graph"
13   :components ((:module 
14                 "unit-tests"
15                 :components
16                 ((:file "package")
17                  (:file "test-graph" :depends-on ("package"))
18                  (:file "test-graph-container" :depends-on ("test-graph"))
19                  (:file "test-connected-components" :depends-on ("test-graph"))
20                  (:file "test-graph-metrics" :depends-on ("test-graph"))
21                  (:file "test-graph-algorithms" :depends-on ("test-graph"))
22                  ))
23                
24                (:module 
25                 "dev"
26                 :components
27                 ((:static-file "notes.text"))))
28   :depends-on (:cl-graph :lift))