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

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

FactoryBot.define do
  factory :cycle_analytics_project_value_stream, class: 'Analytics::CycleAnalytics::ProjectValueStream' do
    sequence(:name) { |n| "Value Stream ##{n}" }

    project
  end
end