2023-04-07 14:39:34 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2024-09-04 07:12:25 +02:00
|
|
|
RSpec.shared_examples 'a check available to devops users' do
|
2023-04-07 14:39:34 +02:00
|
|
|
describe 'skip?' do
|
|
|
|
context 'when user can view devops' do
|
|
|
|
before { allow(user).to receive(:can?).with(:view_devops).and_return(true) }
|
|
|
|
|
|
|
|
it 'returns false' do
|
|
|
|
expect(check.skip?).to be false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user cannot view devops' do
|
|
|
|
before { allow(user).to receive(:can?).with(:view_devops).and_return(false) }
|
|
|
|
|
|
|
|
it 'returns true' do
|
|
|
|
expect(check.skip?).to be true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|