|
|
@ -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) |
|
|
|