summaryrefslogtreecommitdiff
path: root/spec/factories/clusters/agents/project_authorizations.rb
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