2023-02-22 01:55:31 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
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) }
|
2023-02-18 23:10:19 +01:00
|
|
|
|
2017-04-15 16:44:59 +02:00
|
|
|
before do
|
2022-07-05 02:41:40 +02:00
|
|
|
sign_in Fabricate(:user, role: UserRole.find_by(name: 'Admin')), scope: :user
|
2017-04-15 16:44:59 +02:00
|
|
|
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
|