Skip to content

Instantly share code, notes, and snippets.

@semperos
Created January 19, 2012 22:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save semperos/1643192 to your computer and use it in GitHub Desktop.
Save semperos/1643192 to your computer and use it in GitHub Desktop.
deftest organization
(defn my-check [x]
(is (good? x))
(defn another-check [x]
(is (alright? x))
(deftest check-ff
(my-check :firefox)
(another-check :firefox))
(deftest check-chromium
(my-check :chromium)
(another-check :chromium))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment