summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/diff/file_collection/compare_spec.rb
blob: 168d58e584eefe3879183431035610478286e1e5 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Diff::FileCollection::Compare do
  include RepoHelpers

  let(:project) { create(:project, :repository) }
  let(:commit)  { project.commit }
  let(:start_commit) { sample_image_commit }
  let(:head_commit) { sample_commit }
  let(:raw_compare) do
    Gitlab::Git::Compare.new(project.repository.raw_repository,
                             start_commit.id,
                             head_commit.id)
  end

  it_behaves_like 'diff statistics' do
    let(:collection_default_args) do
      {
        project: diffable.project,
        diff_options: {},
        diff_refs: diffable.diff_refs
      }
    end
    let(:diffable) { Compare.new(raw_compare, project) }
    let(:stub_path) { '.gitignore' }
  end
end