Welcome to mirror list, hosted at ThFree Co, Russian Federation.

jobs_helper_spec.rb « ci « helpers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 489d9d3fcee06de892947a43639299ccadb25ba8 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Ci::JobsHelper do
  describe 'jobs data' do
    let(:project)  { create(:project, :repository) }
    let(:bridge) { create(:ci_bridge) }

    subject(:bridge_data) { helper.bridge_data(bridge, project) }

    before do
      allow(helper)
        .to receive(:image_path)
        .and_return('/path/to/illustration')
    end

    it 'returns bridge data' do
      expect(bridge_data).to eq({
        "build_id" => bridge.id,
        "empty-state-illustration-path" => '/path/to/illustration',
        "pipeline_iid" => bridge.pipeline.iid,
        "project_full_path" => project.full_path
      })
    end
  end
end