summaryrefslogtreecommitdiff
path: root/spec/models/clusters/agents/implicit_authorization_spec.rb
blob: 1f4c5b1ac9e0678f6c72efb02149cb4ce89310c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Clusters::Agents::ImplicitAuthorization do
  let_it_be(:agent) { create(:cluster_agent) }

  subject { described_class.new(agent: agent) }

  it { expect(subject.agent).to eq(agent) }
  it { expect(subject.agent_id).to eq(agent.id) }
  it { expect(subject.config_project).to eq(agent.project) }
  it { expect(subject.config).to eq({}) }
end