cl-quickcheck icon indicating copy to clipboard operation
cl-quickcheck copied to clipboard

cl-quickcheck - a Common Lisp port of the QuickCheck unit test framework

Results 2 cl-quickcheck issues
Sort by recently updated
recently updated
newest added

Not sure how to fix these, but consider the following (under SBCL 1.3.1) ``` (let ((*print-length* 14)) (quickcheck (when *testing* (for-all ((s (lambda () (funcall an-integer)))) (is= s s)) (for-all...

Consider the following (under SBCL 1.3.1) ``` (load "~/quicklisp/setup.lisp") (ql:quickload :cl-quickcheck) (shadow 'cl-quickcheck:report '#:cl-user) (use-package :cl-quickcheck) (let ((*print-length* 14)) (quickcheck (when *testing* (for-all ((s (lambda () (funcall an-integer)))) (is= s...