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: f3605991a326a894a676e0270cf70b29b4d44731 (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| "#{FFaker::Lorem.word}#{n}" }
  end
end