Skip to content

Instantly share code, notes, and snippets.

@firthh
Last active August 29, 2015 14:26
Show Gist options
  • Save firthh/51162a191bfc5aa5d844 to your computer and use it in GitHub Desktop.
Save firthh/51162a191bfc5aa5d844 to your computer and use it in GitHub Desktop.
Midje verify mock
(defn something [x]
x)
(defn fun [x]
(something)
x)
(fact "something"
(fun 5) => 5
(provided
(something) => 5 :times 1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment