summaryrefslogtreecommitdiff
path: root/spec/factories/ci/build_trace_section_names.rb
blob: b9b66b4931725e151d14aea93d246f6f0155d42f (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

FactoryBot.define do
  factory :ci_build_trace_section_name, class: 'Ci::BuildTraceSectionName' do
    sequence(:name) { |n| "section_#{n}" }
    project factory: :project
  end
end