summaryrefslogtreecommitdiff
path: root/spec/serializers/build_action_entity_spec.rb
blob: 0f7be8b2c39baf569fc220f6da96a9d41663a2f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'spec_helper'

describe BuildActionEntity do
  let(:build) { create(:ci_build, name: 'test_build') }

  let(:entity) do
    described_class.new(build, request: double)
  end

  describe '#as_json' do
    subject { entity.as_json }

    it 'contains original build name' do
      expect(subject[:name]).to eq 'test_build'
    end

    it 'contains path to the action play' do
      expect(subject[:path]).to include "builds/#{build.id}/play"
    end
  end
end