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: 7ca890371601d4947bac9aa15fe389a21e59a80e (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