25 lines
535 B
Ruby
25 lines
535 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :usage_trends_measurement, class: 'Analytics::UsageTrends::Measurement' do
|
|
recorded_at { Time.now }
|
|
identifier { :projects }
|
|
count { 1_000 }
|
|
|
|
trait :project_count do
|
|
identifier { :projects }
|
|
end
|
|
|
|
trait :group_count do
|
|
identifier { :groups }
|
|
end
|
|
|
|
trait :pipelines_succeeded_count do
|
|
identifier { :pipelines_succeeded }
|
|
end
|
|
|
|
trait :pipelines_skipped_count do
|
|
identifier { :pipelines_skipped }
|
|
end
|
|
end
|
|
end
|