summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/gitaly_client/diff_spec.rb
blob: 2960c9a79ad0297346ab396284ea4d15c758f6c8 (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
30
require 'spec_helper'

describe Gitlab::GitalyClient::Diff, lib: true do
  let(:diff_fields) do
    {
      to_path: ".gitmodules",
      from_path: ".gitmodules",
      old_mode: 0100644,
      new_mode: 0100644,
      from_id: '357406f3075a57708d0163752905cc1576fceacc',
      to_id: '8e5177d718c561d36efde08bad36b43687ee6bf0',
      patch: 'a' * 100
    }
  end

  subject { described_class.new(diff_fields) }

  it { is_expected.to respond_to(:from_path) }
  it { is_expected.to respond_to(:to_path) }
  it { is_expected.to respond_to(:old_mode) }
  it { is_expected.to respond_to(:new_mode) }
  it { is_expected.to respond_to(:from_id) }
  it { is_expected.to respond_to(:to_id) }
  it { is_expected.to respond_to(:patch) }

  describe '#==' do
    it { expect(subject).to eq(described_class.new(diff_fields)) }
    it { expect(subject).not_to eq(described_class.new(diff_fields.merge(patch: 'a'))) }
  end
end