This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2018-12-14 11:37:01 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe Admin::ActionLogsController, type: :controller do
|
|
|
|
describe 'GET #index' do
|
|
|
|
it 'returns 200' do
|
2022-07-04 17:41:40 -07:00
|
|
|
sign_in Fabricate(:user, role: UserRole.find_by(name: 'Admin'))
|
2018-12-14 11:37:01 -08:00
|
|
|
get :index, params: { page: 1 }
|
|
|
|
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|