Skip to content

Instantly share code, notes, and snippets.

@quux00
Created September 3, 2012 01:57
Show Gist options
  • Save quux00/3606179 to your computer and use it in GitHub Desktop.
Save quux00/3606179 to your computer and use it in GitHub Desktop.
(defn setup []
(println "setup"))
(defn teardown []
(println "teardown"))
(defn each-fixture [f]
(setup)
(f)
(teardown))
(use-fixtures :each each-fixture)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment