summaryrefslogtreecommitdiff
path: root/spec/factories/ci/resource.rb
blob: dec26013a25a25be2714a49e28114b60b3c54183 (plain)
1
2
3
4
5
6
7
8
9
10
11
# 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