Skip to content

Instantly share code, notes, and snippets.

@tatey
Created August 7, 2013 22:16
Show Gist options
  • Save tatey/6179339 to your computer and use it in GitHub Desktop.
Save tatey/6179339 to your computer and use it in GitHub Desktop.
real_user = FactoryGirl.create(:user)
mock_user = SimpleMock.new user
mock_user.expect :email, "[email protected]"
real_user.email # => "[email protected]"
mock_user.email # => "[email protected]"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment