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