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"))))
|