Re: fspec requires dependency on test.check

2016-07-21 Thread Joe Selman
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) > >

Re: fspec requires dependency on test.check

2016-07-21 Thread Alex Miller
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:

fspec requires dependency on test.check

2016-07-21 Thread Joe Selman
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