2017-04-15 14:44:59 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe Admin::ResetsController do
|
2017-04-28 13:12:37 +00:00
|
|
|
render_views
|
|
|
|
|
2022-01-27 23:46:42 +00:00
|
|
|
let(:account) { Fabricate(:account) }
|
2023-02-18 22:10:19 +00:00
|
|
|
|
2017-04-15 14:44:59 +00:00
|
|
|
before do
|
2022-07-05 00:41:40 +00:00
|
|
|
sign_in Fabricate(:user, role: UserRole.find_by(name: 'Admin')), scope: :user
|
2017-04-15 14:44:59 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'POST #create' do
|
|
|
|
it 'redirects to admin accounts page' do
|
2017-05-29 16:09:17 +00: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 14:44:59 +00:00
|
|
|
post :create, params: { account_id: account.id }
|
|
|
|
|
2021-07-08 03:31:28 +00:00
|
|
|
expect(response).to redirect_to(admin_account_path(account.id))
|
2017-04-15 14:44:59 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|