collection-check
collection-check copied to clipboard
fuzz testing for alternate clojure data structures
Trying to see whats wrong with clojure.core.rrb_vector but all information I get is ``` FAIL in (collection-check) (rrb_vector_check.clj:8) expected: (assert-vector-like 250 (fv/vector) gen/int) actual: (not (assert-vector-like 250 [] #clojure.test.check.generators.Generator{:gen #object[clojure.test.check.generators$sized$fn__1400...
I have no idea if you'd actually want this PR, but I figured I'd share it with you in case anybody else ever does. In summary, I wanted to test...
Today I needed to create a list-like data structure, and I was hoping collection-check would allow me to test it out.
If possible, I'd like to port my stuff to ClojureScript and I would not know how to do it without collection-check.
This is what I wrote to support testing iterators. I don't know if it's quite what you want in your lib (since it takes things in a bit of a...