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

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

FactoryBot.define do
  factory :cluster_agent, class: 'Clusters::Agent' do
    project

    sequence(:name) { |n| "agent-#{n}" }
  end
end