Spec Admin::ResetsController calls send_reset_password_instructions (#3354)
This commit is contained in:
parent
2e27ce3b61
commit
00dda99789
|
@ -10,6 +10,10 @@ describe Admin::ResetsController do
|
||||||
|
|
||||||
describe 'POST #create' do
|
describe 'POST #create' do
|
||||||
it 'redirects to admin accounts page' 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 }
|
post :create, params: { account_id: account.id }
|
||||||
|
|
||||||
expect(response).to redirect_to(admin_accounts_path)
|
expect(response).to redirect_to(admin_accounts_path)
|
||||||
|
|
Loading…
Reference in New Issue