2019-12-26 22:10:19 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe ProtectedBranchPolicy do
|
2018-05-09 12:01:36 +05:30
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:name) { 'feature' }
|
|
|
|
let(:protected_branch) { create(:protected_branch, name: name) }
|
|
|
|
let(:project) { protected_branch.project }
|
|
|
|
|
|
|
|
subject { described_class.new(user, protected_branch) }
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
it 'branches can be updated via project maintainers' do
|
|
|
|
project.add_maintainer(user)
|
2018-05-09 12:01:36 +05:30
|
|
|
|
|
|
|
is_expected.to be_allowed(:update_protected_branch)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "branches can't be updated by guests" do
|
|
|
|
project.add_guest(user)
|
|
|
|
|
|
|
|
is_expected.to be_disallowed(:update_protected_branch)
|
|
|
|
end
|
|
|
|
end
|