26 lines
724 B
Ruby
26 lines
724 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
FactoryBot.define do
|
||
|
factory :debian_project_distribution, class: 'Packages::Debian::ProjectDistribution' do
|
||
|
container { association(:project) }
|
||
|
|
||
|
sequence(:codename) { |n| "project-dist-#{n}" }
|
||
|
|
||
|
factory :debian_group_distribution, class: 'Packages::Debian::GroupDistribution' do
|
||
|
container { association(:group) }
|
||
|
|
||
|
sequence(:codename) { |n| "group-dist-#{n}" }
|
||
|
end
|
||
|
|
||
|
trait(:with_file) do
|
||
|
after(:build) do |distribution, evaluator|
|
||
|
distribution.file = fixture_file_upload('spec/fixtures/packages/debian/README.md')
|
||
|
end
|
||
|
end
|
||
|
|
||
|
trait(:object_storage) do
|
||
|
file_store { Packages::PackageFileUploader::Store::REMOTE }
|
||
|
end
|
||
|
end
|
||
|
end
|