2017-04-15 16:44:59 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe Admin::ResetsController do
|
2017-04-28 15:12:37 +02:00
|
|
|
render_views
|
|
|
|
|
2022-01-28 00:46:42 +01:00
|
|
|
let(:account) { Fabricate(:account) }
|
2017-04-15 16:44:59 +02:00
|
|
|
before do
|
|
|
|
sign_in Fabricate(:user, admin: true), scope: :user
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'POST #create' do
|
|
|
|
it 'redirects to admin accounts page' do
|
2017-05-29 18:09:17 +02:00
|
|
|
expect_any_instance_of(User).to receive(:send_reset_password_instructions) do |value|
|
|
|
|
expect(value.account_id).to eq account.id
|
|
|
|
end
|
|
|
|
|
2017-04-15 16:44:59 +02:00
|
|
|
post :create, params: { account_id: account.id }
|
|
|
|
|
2021-07-08 05:31:28 +02:00
|
|
|
expect(response).to redirect_to(admin_account_path(account.id))
|
2017-04-15 16:44:59 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|