Skip to content

Instantly share code, notes, and snippets.

@jaycfields
Created November 13, 2012 01:44
Show Gist options
  • Save jaycfields/4063345 to your computer and use it in GitHub Desktop.
Save jaycfields/4063345 to your computer and use it in GitHub Desktop.
(scenario
(let [i (atom 0)]
(expect 0 @i)
(swap! i inc)
(expect 1 @i)
(swap! i inc)
(expect 2 @i)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment