debian-mirror-gitlab/spec/factories/packages/debian/group_architecture.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
266 B
Ruby
Raw Normal View History

2021-03-08 18:12:59 +05:30
# frozen_string_literal: true
FactoryBot.define do
factory :debian_group_architecture, class: 'Packages::Debian::GroupArchitecture' do
distribution { association(:debian_group_distribution) }
2023-04-23 21:23:45 +05:30
sequence(:name) { |n| "#{FFaker::Lorem.word}#{n}" }
2021-03-08 18:12:59 +05:30
end
end