summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/git/diff_stats_collection_spec.rb
blob: 89927cbb3a69cf863ddcf9ff92dcc0396ba5a065 (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
# frozen_string_literal: true

require "spec_helper"

describe Gitlab::Git::DiffStatsCollection do
  let(:stats_a) do
    double(Gitaly::DiffStats, additions: 10, deletions: 15, path: 'foo')
  end

  let(:stats_b) do
    double(Gitaly::DiffStats, additions: 5, deletions: 1, path: 'bar')
  end

  let(:diff_stats) { [stats_a, stats_b] }
  let(:collection) { described_class.new(diff_stats) }

  describe '.find_by_path' do
    it 'returns stats by path when found' do
      expect(collection.find_by_path('foo')).to eq(stats_a)
    end

    it 'returns nil when stats is not found by path' do
      expect(collection.find_by_path('no-file')).to be_nil
    end
  end
end