summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/view/presenter/factory_spec.rb
blob: 515a1b0a8e446db60822398a66350d8972bd5aa9 (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
# frozen_string_literal: true

require 'spec_helper'

describe Gitlab::View::Presenter::Factory do
  let(:build) { Ci::Build.new }

  describe '#initialize' do
    context 'without optional parameters' do
      it 'takes a subject and optional params' do
        presenter = described_class.new(build)

        expect { presenter }.not_to raise_error
      end
    end

    context 'with optional parameters' do
      it 'takes a subject and optional params' do
        presenter = described_class.new(build, user: 'user')

        expect { presenter }.not_to raise_error
      end
    end
  end

  describe '#fabricate!' do
    it 'detects the presenter based on the given subject' do
      presenter = described_class.new(build).fabricate!

      expect(presenter).to be_a(Ci::BuildPresenter)
    end

    it 'uses the presenter_class if given on #initialize' do
      MyCustomPresenter = Class.new(described_class)

      presenter = described_class.new(build, presenter_class: MyCustomPresenter).fabricate!

      expect(presenter).to be_a(MyCustomPresenter)
    end
  end
end