mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:49:14 +08:00
c9dab6fd08
It's very easy to forget to add `require 'rails_helper'` at the top of every core/plugin spec file, and omissions can cause some very confusing/sporadic errors. By setting this flag in `.rspec`, we can remove the need for `require 'rails_helper'` entirely.
33 lines
1.0 KiB
Ruby
33 lines
1.0 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
describe Jobs::CleanUpEmailLogs do
|
|
fab!(:email_log) { Fabricate(:email_log, created_at: 2.years.ago) }
|
|
fab!(:email_log2) { Fabricate(:email_log, created_at: 2.weeks.ago) }
|
|
fab!(:email_log3) { Fabricate(:email_log, created_at: 2.days.ago) }
|
|
|
|
let!(:skipped_email_log) do
|
|
Fabricate(:skipped_email_log, created_at: 2.years.ago)
|
|
end
|
|
|
|
fab!(:skipped_email_log2) { Fabricate(:skipped_email_log) }
|
|
|
|
it "removes old email logs" do
|
|
Jobs::CleanUpEmailLogs.new.execute({})
|
|
expect(EmailLog.all).to contain_exactly(email_log2, email_log3)
|
|
expect(SkippedEmailLog.all).to contain_exactly(skipped_email_log2)
|
|
end
|
|
|
|
it "does not remove old email logs when delete_email_logs_after_days is 0" do
|
|
SiteSetting.delete_email_logs_after_days = 0
|
|
Jobs::CleanUpEmailLogs.new.execute({})
|
|
|
|
expect(EmailLog.all).to contain_exactly(email_log, email_log2, email_log3)
|
|
|
|
expect(SkippedEmailLog.all).to contain_exactly(
|
|
skipped_email_log,
|
|
skipped_email_log2
|
|
)
|
|
end
|
|
|
|
end
|