X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fpackage.lisp;h=3ceb1efb41a0d1a65e441233920ca25da853ea53;hb=855211b99bbee4c524f392b368820bec99698852;hp=1730788c62eee510684f96cef7a7ab8e56403b7f;hpb=41226fef2be97caae83123bb751704cfcb7e92ba;p=fiveam.git diff --git a/src/package.lisp b/src/package.lisp index 1730788..3ceb1ef 100644 --- a/src/package.lisp +++ b/src/package.lisp @@ -1,4 +1,4 @@ -;; -*- lisp -*- +;;;; -*- Mode: Lisp; indent-tabs-mode: nil -*- ;;;; * Introduction @@ -20,6 +20,8 @@ (defpackage :it.bese.fiveam (:use :common-lisp :alexandria) (:nicknames :5am :fiveam) + #+sb-package-locks + (:lock t) (:export ;; creating tests and test-suites #:make-suite @@ -28,6 +30,7 @@ #:in-suite* #:make-test #:test + #:def-test #:get-test #:rem-test #:test-names @@ -49,6 +52,8 @@ #:fail #:*test-dribble* #:for-all + #:*num-trials* + #:*max-trials* #:gen-integer #:gen-float #:gen-character @@ -60,9 +65,12 @@ ;; running tests #:run #:run-all-tests + #:run-all-test-suites #:explain #:explain! #:run! + #:run-all-tests! + #:run-all-test-suites! #:debug! #:! #:!! @@ -71,7 +79,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