Lauri Siltanen
Lauri Siltanen
Is there a way to use amazonica with [localstack](https://github.com/localstack/localstack), i.e. with localhost endpoints? Would be massively awesome for running tests locally.
``` (malli.core/validate [:re #"^thing$"] "thing\n") => true ``` Compare to ``` (re-matches #"^thing$" "thing\n") => nil ```
Trying to generate values for a regular expression schema results in an error using malli version 0.15.0: ```clojure (mg/generate [:re #"^[0-9]$"]) Execution error (ExceptionInfo) at malli.core/-exception (core.cljc:136). :test-chuck-not-available ``` Generating...