Skip to content

Instantly share code, notes, and snippets.

@groony
Created July 3, 2018 07:49
Show Gist options
  • Save groony/d6513c10805554842184fa0fbf401e60 to your computer and use it in GitHub Desktop.
Save groony/d6513c10805554842184fa0fbf401e60 to your computer and use it in GitHub Desktop.
build_stubbed
# Bad
describe User, type: :model do
it do
expect(create(:user)).to be_valid
end
end
# Good
describe User, type: :model do
it do
expect(build_stubbed(:user)).to be_valid
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment