schema

2019-08-15T00:56:50.004600Z

There is test.chuck, a library that can create generators from regex.

2019-08-15T13:04:50.006300Z

That is what I am doing but I then have to remember to add all the extra generators. I want to be able to create my own schema and generator like the ones provided

2019-08-15T14:26:45.007100Z

Create a custom generator that uses a custom leaf generator seems the way to go. https://github.com/plumatic/schema-generators/blob/master/src/schema_generators/generators.cljc#L192

2019-08-15T15:15:53.007400Z

thanks