clojure-spec

About: http://clojure.org/about/spec Guide: http://clojure.org/guides/spec API: https://clojure.github.io/spec.alpha/clojure.spec.alpha-api.html
Kyle Brodie 2020-05-21T00:01:53.008200Z

So I'd do (s/def (with-gen (my-spec-here) (fn [] (something-using-test-check-functions))))

seancorfield 2020-05-21T00:13:04.009100Z

(s/def ::simple-row (with-gen (s/map-of ,,,) (fn [] (...)))) yup