From: Marco Baringer Date: Fri, 20 Jan 2006 09:29:56 +0000 (+0100) Subject: Remove silly debugging forms from example.lisp X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=d213690dcb5968e7f69f754b6d00676b721737b0;p=fiveam.git Remove silly debugging forms from example.lisp --- diff --git a/t/example.lisp b/t/example.lisp index fadeafd..c1076d4 100644 --- a/t/example.lisp +++ b/t/example.lisp @@ -111,9 +111,13 @@ (test dummy-strcat (for-all ((result (gen-string)) - (split-point (gen-integer :min 0 :max 80) + (split-point (gen-integer :min 0 :max 10000) (< split-point (length result)))) (is (string= result (dummy-strcat (subseq result 0 split-point) (subseq result split-point)))))) -(5am:run! 'dummy-strcat) \ No newline at end of file +(test random-failure + (for-all ((result (gen-integer :min 0 :max 1))) + (is (plusp result)) + (is (= result 0)))) +