Skip to content

Instantly share code, notes, and snippets.

@ethangunderson
Created March 14, 2010 07:20
Show Gist options
  • Select an option

  • Save ethangunderson/331820 to your computer and use it in GitHub Desktop.

Select an option

Save ethangunderson/331820 to your computer and use it in GitHub Desktop.
#this fails
lambda { User.create }.should change(User.all, :count).by(+1)
#this passes
lambda { User.create }.should change(User, :count).by(+1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment