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

build_trace_section_names.rb « ci « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ce07e716dde308e69b7aa4f26805effe4b9e198f (plain)
1
2
3
4
5
6
FactoryBot.define do
  factory :ci_build_trace_section_name, class: Ci::BuildTraceSectionName do
    sequence(:name) { |n| "section_#{n}" }
    project factory: :project
  end
end