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

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

FactoryBot.define do
  factory :raw_usage_data do
    recorded_at { Time.current }
    payload { { test: 'test' } }
  end
end