Browse Source

Spec Admin::ResetsController calls send_reset_password_instructions (#3354)

master
Akihiko Odaki 7 years ago
committed by Eugen Rochko
parent
commit
00dda99789
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      spec/controllers/admin/resets_controller_spec.rb

+ 4
- 0
spec/controllers/admin/resets_controller_spec.rb View File

@ -10,6 +10,10 @@ describe Admin::ResetsController do
describe 'POST #create' do
it 'redirects to admin accounts page' do
expect_any_instance_of(User).to receive(:send_reset_password_instructions) do |value|
expect(value.account_id).to eq account.id
end
post :create, params: { account_id: account.id }
expect(response).to redirect_to(admin_accounts_path)

Loading…
Cancel
Save