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

FactoryBot.define do
  factory :ci_platform_metric do
    recorded_at { Time.zone.now }
    platform_target { generate(:title) }
    count { SecureRandom.random_number(100) + 1 }
  end
end