discourse/spec/integration/auto_reject_reviewable_users_spec.rb
David Taylor c9dab6fd08
DEV: Automatically require 'rails_helper' in all specs (#16077)
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.
2022-03-01 17:50:50 +00:00

21 lines
618 B
Ruby

# frozen_string_literal: true
describe "auto reject reviewable users" do
context "reviewable users" do
fab!(:old_user) { Fabricate(:reviewable, created_at: 80.days.ago) }
it "does not send email to rejected user" do
SiteSetting.must_approve_users = true
SiteSetting.auto_handle_queued_age = 60
Jobs::CriticalUserEmail.any_instance.expects(:execute).never
Jobs::AutoQueueHandler.new.execute({})
expect(old_user.reload.rejected?).to eq(true)
expect(UserHistory.last.context).to eq(
I18n.t("user.destroy_reasons.reviewable_reject_auto")
)
end
end
end