mirror of
https://github.com/mastodon/mastodon.git
synced 2025-01-24 02:51:43 +01:00
26 lines
644 B
Ruby
26 lines
644 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.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
|
|
|
|
describe '.prepare' do
|
|
before { Fabricate :status }
|
|
|
|
it 'generates records from source class which prepare data' do
|
|
expect { described_class.prepare(Time.current.year) }
|
|
.to change(AnnualReport::StatusesPerAccountCount, :count).by(1)
|
|
end
|
|
end
|
|
end
|