Skip to content
Snippets Groups Projects
Commit 00dda997 authored by Akihiko Odaki's avatar Akihiko Odaki Committed by Eugen Rochko
Browse files

Spec Admin::ResetsController calls send_reset_password_instructions (#3354)

parent 2e27ce3b
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment