Remove silly debugging forms from example.lisp
authorMarco Baringer <mb@bese.it>
Fri, 20 Jan 2006 09:29:56 +0000 (10:29 +0100)
committerMarco Baringer <mb@bese.it>
Fri, 20 Jan 2006 09:29:56 +0000 (10:29 +0100)
t/example.lisp

index fadeafd..c1076d4 100644 (file)
 
 (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))))
+