test: add factory for ReportingEventsRollup

This commit is contained in:
Shivam Mishra
2026-02-11 21:55:44 +05:30
parent d080407a66
commit d28f11e119
+12
View File
@@ -0,0 +1,12 @@
FactoryBot.define do
factory :reporting_events_rollup do
account
date { Date.current }
dimension_type { 'account' }
dimension_id { 1 }
metric { 'first_response' }
count { 1 }
sum_value { 100.0 }
sum_value_business_hours { 50.0 }
end
end