2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
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
|
2019-02-15 15:39:39 +05:30
|
|
|
|
|
|
|
it_behaves_like 'unfoldable diff' do
|
|
|
|
let(:diffable) { project.commit }
|
|
|
|
end
|
2018-12-05 23:21:45 +05:30
|
|
|
end
|