X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fpackage.lisp;h=09a857802dbbbe584148c61b05d2894e62434ad7;hb=08b391a6ecfb01d739fabaedad8557c21971b197;hp=ec84e56c49d9d5fa4c00828cc0fbe0fa6f30d9bb;hpb=869a1f5516006aba36b927d447206f686206fbc1;p=fiveam.git diff --git a/src/package.lisp b/src/package.lisp index ec84e56..09a8578 100644 --- a/src/package.lisp +++ b/src/package.lisp @@ -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 @@ -71,7 +74,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