Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build_trace_chunks.rb « ci « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c0b9a25bfe8e7fda33197e3cd87b59e838ae4e39 (plain)
1
2
3
4
5
6
7
FactoryBot.define do
  factory :ci_build_trace_chunk, class: Ci::BuildTraceChunk do
    build factory: :ci_build
    chunk_index 0
    data_store :redis
  end
end