85b29c1c2f
Probably useful as we often move these files to "new" files.
32 lines
894 B
Ruby
32 lines
894 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe ProtectedBranches::DestroyService do
|
|
let(:protected_branch) { create(:protected_branch) }
|
|
let(:project) { protected_branch.project }
|
|
let(:user) { project.owner }
|
|
|
|
describe '#execute' do
|
|
subject(:service) { described_class.new(project, user) }
|
|
|
|
it 'destroys a protected branch' do
|
|
service.execute(protected_branch)
|
|
|
|
expect(protected_branch).to be_destroyed
|
|
end
|
|
|
|
context 'when a policy restricts rule deletion' do
|
|
before do
|
|
policy = instance_double(ProtectedBranchPolicy, can?: false)
|
|
expect(ProtectedBranchPolicy).to receive(:new).and_return(policy)
|
|
end
|
|
|
|
it "prevents deletion of the protected branch rule" do
|
|
expect do
|
|
service.execute(protected_branch)
|
|
end.to raise_error(Gitlab::Access::AccessDeniedError)
|
|
end
|
|
end
|
|
end
|
|
end
|