summaryrefslogtreecommitdiff
path: root/spec/helpers/projects/cluster_agents_helper_spec.rb
blob: 632544797ee994c9fe4fd54fffd86a12db9b502a (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Projects::ClusterAgentsHelper do
  describe '#js_cluster_agent_details_data' do
    let_it_be(:project) { create(:project) }

    let(:agent_name) { 'agent-name' }

    subject { helper.js_cluster_agent_details_data(agent_name, project) }

    it 'returns name' do
      expect(subject[:agent_name]).to eq(agent_name)
    end

    it 'returns project path' do
      expect(subject[:project_path]).to eq(project.full_path)
    end

    it 'returns string contants' do
      expect(subject[:activity_empty_state_image]).to be_kind_of(String)
      expect(subject[:empty_state_svg_path]).to be_kind_of(String)
    end
  end
end