Spec Admin::ResetsController calls send_reset_password_instructions (#3354)

This commit is contained in:
Akihiko Odaki 2017-05-30 01:09:17 +09:00 committed by Eugen Rochko
parent 2e27ce3b61
commit 00dda99789

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)