[ANN] iota - Infix operators for test assertions

2015-07-17 Thread Malcolm Sparks
I've been writing quite a lot of tests recently, with clojure.test I wrote a little macro to help. It means you could replace this : (require '[clojure.test :refer :all] '[schema.core :as s]) (deftest my-test (let [response ...] (is (= (:status response) 200)) (is (= (count

Re: [ANN] iota - Infix operators for test assertions

2015-07-17 Thread Matching Socks
The name iota is also used by https://github.com/thebusby/iota [iota 1.1.2] Iota is a Clojure library for handling large text files in memory On Friday, July 17, 2015 at 10:44:18 AM UTC-4, Malcolm Sparks wrote: I've been writing quite a lot of tests recently, with clojure.test I wrote a