formatting
[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   :author "Gary Warren King <gwking@metabang.com>"
9   :maintainer "Gary Warren King <gwking@metabang.com>"
10   :licence "MIT Style License"
11   :description "Tests for CL-Graph"
12   :components ((:module
13                 "setup"
14                 :pathname "unit-tests/"
15                 :components
16                 ((:file "package")
17                  (:file "test-graph" :depends-on ("package"))
18                  ))
19                (:module 
20                 "unit-tests"
21                 :pathname "unit-tests/"
22                 :depends-on ("setup")
23                 :components
24                 ((:file "test-graph-container")
25                  (:file "test-connected-components")
26                  (:file "test-graph-metrics")
27                  ;;(:file "test-graph-algorithms")
28                  (:file "test-api")
29                  ))
30                
31                (:module 
32                 "dev"
33                 :components
34                 ((:static-file "notes.text"))))
35   :depends-on (:cl-graph :lift))