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

commit_spec.rb « file_collection « diff « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6c109e96a532cf2520bc7a35900b1c7006fb0895 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Diff::FileCollection::Commit do
  let(:project) { create(:project, :repository) }

  it_behaves_like 'diff statistics' do
    let(:collection_default_args) do
      { diff_options: {} }
    end
    let(:diffable) { project.commit }
    let(:stub_path) { 'bar/branch-test.txt' }
  end

  it_behaves_like 'unfoldable diff' do
    let(:diffable) { project.commit }
  end
end