10 lines
224 B
Ruby
10 lines
224 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
FactoryBot.define do
|
||
|
factory :ci_build_pending_state, class: 'Ci::BuildPendingState' do
|
||
|
build factory: :ci_build
|
||
|
trace_checksum { 'crc32:12345678' }
|
||
|
state { 'success' }
|
||
|
end
|
||
|
end
|