From: Marco Baringer Date: Fri, 20 Jan 2006 17:26:39 +0000 (+0100) Subject: Made run!'s first argument optional (defaults to *suite*) X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=bdbb83cf3847669c0e929e4292a25e2d48fa9f81;p=fiveam.git Made run!'s first argument optional (defaults to *suite*) --- diff --git a/src/run.lisp b/src/run.lisp index 3f03cfa..c070f44 100644 --- a/src/run.lisp +++ b/src/run.lisp @@ -194,7 +194,7 @@ run.")) ;;;; ** Public entry points -(defun run! (test-spec) +(defun run! (&optional (test-spec *suite*)) "Equivalent to (explain (run TEST-SPEC))." (explain! (run test-spec)))