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

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

FactoryBot.define do
  factory :debian_group_component, class: 'Packages::Debian::GroupComponent' do
    distribution { association(:debian_group_distribution) }

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