Welcome! Please see the About page for a little more info on how this works.
In particular the output of {{(generate (recursive-gen vector nat) 1000)}} is rather less varied than I would hope.
Comment made by: floybix
Yes, recursive-gen seems not to generate scalars, which means any-printable doesn't generate scalars.
(require '[clojure.test.check.generators :as g]) (->> (g/sample g/any-printable 1000) (remove coll?)) ;; ()
Comment made by: gfredericks
recursive-gen should generate scalars on master
D'oh, sorry for the noise.
Comment made by: seancorfield
Does this also cause http://dev.clojure.org/jira/browse/CLJ-2036 ?
I think the "doesn't return scalars" problem is fixed on master; this is a subtler problem.
TCHECK-83 in particular, is done.