Spec Admin::ResetsController calls send_reset_password_instructions (#3354)

th-downstream
Akihiko Odaki 8 years ago committed by Eugen Rochko
parent 2b299efbbc
commit 1cb145578b

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