9 lines
157 B
Ruby
9 lines
157 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
FactoryBot.define do
|
||
|
factory :raw_usage_data do
|
||
|
recorded_at { Time.current }
|
||
|
payload { { test: 'test' } }
|
||
|
end
|
||
|
end
|