debian-mirror-gitlab/spec/factories/ci_platform_metrics.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
220 B
Ruby
Raw Normal View History

2020-11-24 15:15:51 +05:30
# frozen_string_literal: true
FactoryBot.define do
factory :ci_platform_metric do
recorded_at { Time.zone.now }
platform_target { generate(:title) }
2021-03-08 18:12:59 +05:30
count { SecureRandom.random_number(100) + 1 }
2020-11-24 15:15:51 +05:30
end
end