Welcome to mirror list, hosted at ThFree Co, Russian Federation.

branch_rule_spec.rb « projects « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6910fbbb6db07f1eaf900550991f02652fd96bd3 (plain)
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
26
27
28
29
30
31
32
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Projects::BranchRule, feature_category: :source_code_management do
  let_it_be(:project) { create(:project, :repository) }
  let_it_be(:protected_branch) { create(:protected_branch, project: project, name: 'feature*') }

  subject { described_class.new(protected_branch.project, protected_branch) }

  it 'delegates methods to protected branch' do
    expect(subject).to delegate_method(:name).to(:protected_branch)
    expect(subject).to delegate_method(:group).to(:protected_branch)
    expect(subject).to delegate_method(:default_branch?).to(:protected_branch)
    expect(subject).to delegate_method(:created_at).to(:protected_branch)
    expect(subject).to delegate_method(:updated_at).to(:protected_branch)
  end

  it 'is protected' do
    expect(subject.protected?).to eq(true)
  end

  it 'branch protection returns protected branch' do
    expect(subject.branch_protection).to eq(protected_branch)
  end

  describe '#matching_branches_count' do
    it 'returns the number of branches that are matching the protected branch name' do
      expect(subject.matching_branches_count).to eq(2)
    end
  end
end