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

segments.rb « devops_adoption « analytics « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 367ee01fa18ecf44d118e88c351b57fdd4fb613f (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

FactoryBot.define do
  factory :devops_adoption_segment, class: 'Analytics::DevopsAdoption::Segment' do
    sequence(:name) { |n| "Segment #{n}" }
  end
end