debian-mirror-gitlab/spec/factories/ci/resource.rb
2021-03-11 19:13:27 +05:30

12 lines
228 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :ci_resource, class: 'Ci::Resource' do
resource_group factory: :ci_resource_group
trait(:retained) do
processable factory: :ci_build
end
end
end