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

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

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

    sequence(:name) { |n| "project-arch-#{n}" }
  end
end