X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fpackage.lisp;h=345aec6a3ae0897ff1a0249894cb2a35872e06bd;hb=ff3f3cf6b9523e7e71182d49bc374bf7c5a3fd8f;hp=f6e211b69bab1a6416400241f6bb94084b060751;hpb=5d83672b8d9cbc7179dcced2e25bc30253c34519;p=fiveam.git diff --git a/src/package.lisp b/src/package.lisp index f6e211b..345aec6 100644 --- a/src/package.lisp +++ b/src/package.lisp @@ -20,10 +20,13 @@ (defpackage :it.bese.fiveam (:use :common-lisp :alexandria) (:nicknames :5am :fiveam) + #+sb-package-locks + (:lock t) (:export ;; creating tests and test-suites #:make-suite #:def-suite + #:def-suite* #:in-suite #:in-suite* #:make-test @@ -50,6 +53,8 @@ #:fail #:*test-dribble* #:for-all + #:*num-trials* + #:*max-trials* #:gen-integer #:gen-float #:gen-character @@ -75,7 +80,9 @@ #:*debug-on-error* #:*debug-on-failure* #:*verbose-failures* - #:results-status)) + #:results-status + ;; introspection + #:list-all-suites)) ;;;; You can use #+5am to put your test-defining code inline with your ;;;; other code - and not require people to have fiveam to run your