Re: Clojure spec generate and instrument in cascade

2018-01-07 Thread Azzabi Ahmed
I came across that library that one is generating specs from sample data, but what I want is, if I have specs for a function foo is there a library to generate specs for bar that's called from foo. -- You received this message because you are subscribed to the Google Groups "Clojure" group.

Re: Clojure spec generate and instrument in cascade

2018-01-07 Thread Gary Verhaegen
A Google search for "clojure spec generate" turned up this for me on the first page of results: https://github.com/stathissideris/spec-provider It may or may not fit your use-case, but scanning through the README it seems at least related to what you're looking for. On 7 January 2018 at 18:25,

Clojure spec generate and instrument in cascade

2018-01-07 Thread Azzabi Ahmed
Hi all, so usually I structure my application as black box, that takes some input and gives output, I usually validate inputs before starting with them in my system boundaries, which I think clojure spec is good for since it also allows to document what my application accept or expect. Now my