summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/word_diff/chunk_collection_spec.rb
blob: aa837f760c1907f8bb568b40aea20f180181a1c4 (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
41
42
43
44
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::WordDiff::ChunkCollection do
  subject(:collection) { described_class.new }

  describe '#add' do
    it 'adds elements to the chunk collection' do
      collection.add('Hello')
      collection.add(' World')

      expect(collection.content).to eq('Hello World')
    end
  end

  describe '#content' do
    subject { collection.content }

    context 'when no elements in the collection' do
      it { is_expected.to eq('') }
    end

    context 'when elements exist' do
      before do
        collection.add('Hi')
        collection.add(' GitLab!')
      end

      it { is_expected.to eq('Hi GitLab!') }
    end
  end

  describe '#reset' do
    it 'clears the collection' do
      collection.add('1')
      collection.add('2')

      collection.reset

      expect(collection.content).to eq('')
    end
  end
end