Last active
August 29, 2015 14:26
-
-
Save firthh/51162a191bfc5aa5d844 to your computer and use it in GitHub Desktop.
Midje verify mock
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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