Hello Everybody, what test runner/library do you use with clojure.spec.test.alpha/check? I found https://gist.github.com/jmglov/30571ede32d34208d77bebe51bb64f29 for integration with clojure.test but the errors it prints aren't verry informative. Is there something better?
Clojure core uses something custom
Do you have a link?
has anyone written an unofficial spec
for EDN? I'm looking for a programmatic way of distinguishing between Clojure forms and plain EDN forms.
@afoltzm This is the definitive word on EDN I believe https://github.com/edn-format/edn
Clojure core has an implementation of reading arbitrary Clojure forms, via clojure.core/read, and the EDN subset, via clojure.edn/read
Those implementations in Clojure itself are written in Java. The tools.reader contrib library also has implementations written in Clojure.