~cytrogen/masto-fe

ref: a001ae2f3943d8ac111c6437ee6ff890e94544ac masto-fe/spec/policies/report_policy_spec.rb -rw-r--r-- 558 bytes
a001ae2f — Claire Fix explore prompt sometimes showing up when the home TL is loading (#27062) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

require 'rails_helper'
require 'pundit/rspec'

RSpec.describe ReportPolicy do
  subject { described_class }

  let(:admin)   { Fabricate(:user, role: UserRole.find_by(name: 'Admin')).account }
  let(:john)    { Fabricate(:account) }

  permissions :update?, :index?, :show? do
    context 'when staff?' do
      it 'permits' do
        expect(subject).to permit(admin, Report)
      end
    end

    context 'with !staff?' do
      it 'denies' do
        expect(subject).to_not permit(john, Report)
      end
    end
  end
end