franzinc / tester

Tester framework for Common Lisp

This URL has Read+Write access

tester / tester.asd
100644 14 lines (10 sloc) 0.39 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(in-package :cl-user)
 
(asdf:defsystem :tester
    :description "A test harness for Common Lisp."
    :author "Kevin Layer <layer@franz.com>"
    :license "LLGPL (http://opensource.franz.com/preamble.html)"
    :components ((:static-file "readme.txt")
(:file "tester")))
 
(defmethod asdf::source-file-type ((c asdf::cl-source-file)
(s (eql (asdf::find-system :tester))))
  "cl")