Add first pass coverage for AnnualReport class (#31704)

This commit is contained in:
Matt Jankowski 2024-09-03 05:05:26 -04:00 committed by GitHub
parent 2a244e2fdb
commit 31c00108a4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,16 @@
# frozen_string_literal: true
require 'rails_helper'
describe AnnualReport do
describe '#generate' do
subject { described_class.new(account, Time.zone.now.year) }
let(:account) { Fabricate :account }
it 'builds a report for an account' do
expect { subject.generate }
.to change(GeneratedAnnualReport, :count).by(1)
end
end
end