gitlab-ce/spec/factories/raw_usage_data.rb

10 lines
211 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :raw_usage_data do
recorded_at { Time.current }
payload { { test: 'test' } }
association :organization, factory: :organization
end
end