Skip to content

Instantly share code, notes, and snippets.

@jebberjeb
Created October 21, 2013 20:23
Show Gist options
  • Save jebberjeb/7090325 to your computer and use it in GitHub Desktop.
Save jebberjeb/7090325 to your computer and use it in GitHub Desktop.
(ns test-app.core)
(defn get-rand-by-n
[n]
(* n (rand)))
(with-redefs
[clojure.core/rand (fn [] 2)]
(= 6 (get-rand-by-n 3)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment