2020-03-13 15:44:24 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
FactoryBot.define do
|
|
|
|
factory :ci_resource, class: 'Ci::Resource' do
|
|
|
|
resource_group factory: :ci_resource_group
|
|
|
|
|
|
|
|
trait(:retained) do
|
2021-03-11 19:13:27 +05:30
|
|
|
processable factory: :ci_build
|
2023-03-04 22:38:38 +05:30
|
|
|
partition_id { processable.partition_id }
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|