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

group_authorizations.rb « agents « clusters « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6ea3668dc669ea36940b39a1efdcebfde6d364d4 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

FactoryBot.define do
  factory :agent_group_authorization, class: 'Clusters::Agents::GroupAuthorization' do
    association :agent, factory: :cluster_agent
    group

    config { { default_namespace: 'production' } }
  end
end