source: trunk/test/cl-irc-test.asd

Last change on this file was 161, checked in by Erik Huelsmann, 18 years ago

Replace destructuring-arguments with a hopefully more useful version.

Including tests.

Raising specific errors has been raised as its own issue #22.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision URL
File size: 722 bytes
Line 
1;;;; $Id: cl-irc-test.asd 161 2006-05-23 20:40:48Z ehuelsmann $
2;;;; $URL: trunk/test/cl-irc-test.asd $
3
4;;;; See the LICENSE file for licensing information.
5
6(in-package #:cl-user)
7
8(defpackage #:cl-irc-test-system
9    (:use #:cl #:asdf))
10
11(in-package #:cl-irc-test-system)
12
13(defsystem cl-irc-test
14    :name "cl-irc-test"
15    :author "Erik Enge"
16    :version "0.1.0"
17    :licence "MIT"
18    :description "Tests for the cl-irc system"
19    :depends-on (:split-sequence :rt :cl-irc)
20    :components ((:file "package")
21                 (:file "test-parse-message"
22                        :depends-on ("package"))
23                 (:file "test-protocol"
24                        :depends-on ("test-parse-message"))
25                 (:file "test-binding-macro"
26                        :depends-on ("package"))))
Note: See TracBrowser for help on using the repository browser.