8 lines
157 B
Ruby
8 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
|