0
0
Fork 0

Add coverage for api/v1/annual_reports area (#31730)

This commit is contained in:
Matt Jankowski 2024-09-03 12:10:48 -04:00 committed by GitHub
parent 8c928faff3
commit c9ea91f868
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 65 additions and 0 deletions

View file

@ -0,0 +1,8 @@
# frozen_string_literal: true
Fabricator(:generated_annual_report) do
account { Fabricate.build(:account) }
data { { test: :data } }
schema_version { AnnualReport::SCHEMA }
year { sequence(:year) { |i| 2000 + i } }
end