2020-07-20 05:09:22 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
FactoryBot.define do
|
|
|
|
factory :cluster_agent, class: 'Clusters::Agent' do
|
|
|
|
project
|
2021-09-03 11:10:48 -04:00
|
|
|
association :created_by_user, factory: :user
|
2020-07-20 05:09:22 -04:00
|
|
|
|
2020-07-23 02:09:19 -04:00
|
|
|
sequence(:name) { |n| "agent-#{n}" }
|
2020-07-20 05:09:22 -04:00
|
|
|
end
|
|
|
|
end
|