Skip to content

Instantly share code, notes, and snippets.

@ralfonso
Created May 3, 2012 22:54
Show Gist options
  • Save ralfonso/2590167 to your computer and use it in GitHub Desktop.
Save ralfonso/2590167 to your computer and use it in GitHub Desktop.
clojure mock
user=> (with-redefs [db/query (constantly [{:id 123 :slug "TEST THIS YO"}])] (db/query "select * from page"))
[{:slug "TEST THIS YO", :id 123}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment