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