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

branch_names_finder_spec.rb « repositories « finders « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4d8bfcc0f20f998cf671c918ed7933068dc33531 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Repositories::BranchNamesFinder do
  let(:project) { create(:project, :repository) }

  let(:branch_names_finder) { described_class.new(project.repository, search: 'conflict-*') }

  describe '#execute' do
    subject(:execute) { branch_names_finder.execute }

    it 'filters branch names' do
      expect(execute).to contain_exactly(
        'conflict-binary-file',
        'conflict-resolvable',
        'conflict-contains-conflict-markers',
        'conflict-missing-side',
        'conflict-start',
        'conflict-non-utf8',
        'conflict-too-large'
      )
    end
  end
end