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

project_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: 176ecc3b517d4a7e98b3bccc7cd661b25f719141 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

FactoryBot.define do
  factory :agent_project_authorization, class: 'Clusters::Agents::ProjectAuthorization' do
    association :agent, factory: :cluster_agent
    project

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