File: cl-irc-test.asd

package info (click to toggle)
cl-irc 1%3A0.8.1-dfsg-3.1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 3,080 kB
  • ctags: 579
  • sloc: lisp: 4,074; makefile: 46
file content (26 lines) | stat: -rw-r--r-- 861 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
;;;; $Id: cl-irc-test.asd 161 2006-05-23 20:40:48Z ehuelsmann $
;;;; $URL: svn+ssh://ehuelsmann@common-lisp.net/project/cl-irc/svn/trunk/test/cl-irc-test.asd $

;;;; See the LICENSE file for licensing information.

(in-package #:cl-user)

(defpackage #:cl-irc-test-system
    (:use #:cl #:asdf))

(in-package #:cl-irc-test-system)

(defsystem cl-irc-test
    :name "cl-irc-test"
    :author "Erik Enge"
    :version "0.1.0"
    :licence "MIT"
    :description "Tests for the cl-irc system"
    :depends-on (:split-sequence :rt :cl-irc)
    :components ((:file "package")
                 (:file "test-parse-message"
                        :depends-on ("package"))
                 (:file "test-protocol"
                        :depends-on ("test-parse-message"))
                 (:file "test-binding-macro"
                        :depends-on ("package"))))