Skip to content

Instantly share code, notes, and snippets.

@pinzolo
Created December 10, 2015 06:03
Show Gist options
  • Save pinzolo/8bd9271791d902efb624 to your computer and use it in GitHub Desktop.
Save pinzolo/8bd9271791d902efb624 to your computer and use it in GitHub Desktop.
システムでメールアドレスを変更しても変更メールを送信しない
def change_user_email(user)
user.email = '[email protected]'
user.skip_reconfirmation!
user.save
end
# テストコード
test 'ユーザーのメールアドレスを変更しても、メールが送信されないこと' do
assert_no_difference 'ActionMailer::Base.deliveries.size' do
change_user_email(@user)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment