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

group_authorization_spec.rb « agents « clusters « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: baeb8f5464e7f71e322dc63e1b65c35b460e6c8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Clusters::Agents::GroupAuthorization do
  it { is_expected.to belong_to(:agent).class_name('Clusters::Agent').required }
  it { is_expected.to belong_to(:group).class_name('::Group').required }

  it { expect(described_class).to validate_jsonb_schema(['config']) }

  describe '#config_project' do
    let(:record) { create(:agent_group_authorization) }

    it { expect(record.config_project).to eq(record.agent.project) }
  end
end