public
Description: BDD for Common Lisp
Homepage:
Clone URL: git://github.com/osteele/cl-spec.git
osteele (author)
Tue Jan 15 07:31:35 -0800 2008
commit  86ec419166158682ab6de9dbe6e4d8458435ddca
tree    98705085f67e3a78d86bbd57d4313892bb1eb478
parent  90633abd1672f695d57edb3e1e06830213ac1a7f
cl-spec / package.lisp
100644 13 lines (11 sloc) 0.34 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
;;; Copyright 2008 by Oliver Steele. Released under the MIT License.
 
(in-package #:common-lisp-user)
 
(defpackage #:cl-spec
  (:use #:common-lisp)
  (:nicknames :clspec)
  (:documentation "Behavior Testing for Common Lisp.")
  (:export define-specification
           specify
           run-specification
           run-spec
           ))