Great, thanks!
On Thursday, July 21, 2016 at 10:02:51 PM UTC-7, Alex Miller wrote:
>
> Hi Joe,
>
> This is an area of ongoing work and the following ticket captures this
> issue as well:
>
> http://dev.clojure.org/jira/browse/CLJ-1936 (and duped
> http://dev.clojure.org/jira/browse/CLJ-1976)
>
>
Hi Joe,
This is an area of ongoing work and the following ticket captures this
issue as well:
http://dev.clojure.org/jira/browse/CLJ-1936 (and
duped http://dev.clojure.org/jira/browse/CLJ-1976)
Spec by itself should not require a test.check dependency.
Alex
On Thursday, July 21, 2016 at 11:
I have a simple lein project on clojure 1.9.0-alpha10 with no other
dependencies. Trying to use fspec and explain yields an error:
(require '[clojure.spec :as s])
> => nil
> (s/def ::my-spec (s/fspec :args string? :ret string?))
> => :user/my-spec
> (s/explain ::my-spec (fn [_] "foo"))
> FileNotF