2018-12-21 01:52:07 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe ReportPolicy do
|
2023-07-12 16:49:33 +09:00
|
|
|
subject { described_class }
|
|
|
|
|
2022-07-05 09:41:40 +09:00
|
|
|
let(:admin) { Fabricate(:user, role: UserRole.find_by(name: 'Admin')).account }
|
2022-01-28 08:46:42 +09:00
|
|
|
let(:john) { Fabricate(:account) }
|
2018-12-21 01:52:07 +09:00
|
|
|
|
|
|
|
permissions :update?, :index?, :show? do
|
2023-05-04 12:49:08 +09:00
|
|
|
context 'when staff?' do
|
2018-12-21 01:52:07 +09:00
|
|
|
it 'permits' do
|
|
|
|
expect(subject).to permit(admin, Report)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 12:49:08 +09:00
|
|
|
context 'with !staff?' do
|
2018-12-21 01:52:07 +09:00
|
|
|
it 'denies' do
|
|
|
|
expect(subject).to_not permit(john, Report)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|