(defn in-any-order "Produces matcher that matches sequences without regard to order" [expected] (fn [actual] (and (= (count expected) (count actual)) (= (set expected) (set actual)))))
Comments top
No comments for in-any-order. Log in to add a comment.