summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/diff/inline_diff_spec.rb
blob: 95a993d26cf70be4c9be3f01a688cb7278b75e5a (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
31
32
33
34
35
36
37
38
39
40
require 'spec_helper'

describe Gitlab::Diff::InlineDiff, lib: true do
  describe '.for_lines' do
    let(:diff) do
      <<eos
 class Test
-  def initialize(test = true)
+  def initialize(test = false)
     @test = test
   end
 end
eos
    end

    let(:subject) { described_class.for_lines(diff.lines) }

    it 'finds all inline diffs' do
      expect(subject[0]).to be_nil
      expect(subject[1]).to eq([25..27])
      expect(subject[2]).to eq([25..28])
      expect(subject[3]).to be_nil
      expect(subject[4]).to be_nil
      expect(subject[5]).to be_nil
    end
  end

  describe "#inline_diffs" do
    let(:old_line) { "XXX def initialize(test = true)" }
    let(:new_line) { "YYY def initialize(test = false)" }
    let(:subject) { described_class.new(old_line, new_line, offset: 3).inline_diffs }

    it "finds the inline diff" do
      old_diffs, new_diffs = subject

      expect(old_diffs).to eq([26..28])
      expect(new_diffs).to eq([26..29])
    end
  end
end