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

project_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: cb7501cd9f231afa29ff795d5fa1535df133ab62 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

FactoryBot.define do
  factory :debian_project_component, class: 'Packages::Debian::ProjectComponent' do
    distribution { association(:debian_project_distribution) }

    sequence(:name) { |n| "#{FFaker::Lorem.word}#{n}" }
  end
end