(defn arg-matcher-maker [expected] "Based on an expected value, generates a function that returns true if the actual value matches it. Don't use this." (fn [actual] (function-aware-= actual expected)))
Comments top
No comments for arg-matcher-maker. Log in to add a comment.