Upgrading to Clojure 1.3, I need to replace some mock bindings with 1.3 with friendliness. The mock library seems to be useful for replacing instances in which I previously used binding to make fun of function calls within the function I'm testing, but there are some cases where what I want to make fun of is var associated with some data, What would be a good way to do this in Clojure 1.3?
source
share