Fork me on GitHub
#malli
<
2020-09-01
>
shaunxcode20:09:37

Have recursive schemas been implemented now? I know there was a ticket (which I cant find right now) where various versions were being discussed.

jhacks21:09:41

@shaunxcode It looks like this might be the discussion: https://github.com/metosin/malli/pull/117 and maybe this is the implementation?: https://github.com/metosin/malli/pull/209 but I’m just getting familiar with malli

shaunxcode21:09:24

thanks that is it exactly!

jhacks21:09:22

@shaunxcode I just saw this section in the readme: https://github.com/metosin/malli#recursive-schemas which might be helpful too

jhacks21:09:34

I was following along with this code from the README.md:

;; regexs work too
(mg/generate 
  [:re #"^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,63}$"] 
  {:seed 42, :size 10})
; => "[email protected]"
In order for it to work I needed to explicitly add test.chuck as a dependency, or else I would get this error:
Execution error (IllegalStateException) at malli.generator/eval20132$fn (generator.cljc:135).
    Attempting to call unbound fn: #'malli.generator/-re-gen
If that’s the expected behavior (and I didn’t mess something up), maybe it would be good to add a note to the README.md under https://github.com/metosin/malli#value-generation about adding test.chuck as a dependency?