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

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

FactoryBot.define do
  factory :ci_resource_group, class: Ci::ResourceGroup do
    project
    sequence(:key) { |n| "IOS_#{n}" }
  end
end