2019-04-29 19:27:42 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-27 21:27:38 -05:00
|
|
|
RSpec.describe RejectionMailer do
|
2015-05-04 00:38:17 -05:00
|
|
|
describe "send_rejection" do
|
2022-07-27 11:14:14 -05:00
|
|
|
context "when sending rejection email" do
|
2024-02-01 10:28:10 -06:00
|
|
|
fab!(:user)
|
2023-12-06 16:25:00 -06:00
|
|
|
let(:template_args) do
|
2015-05-04 00:38:17 -05:00
|
|
|
{ former_title: "Mail Subject", destination: user.email, site_name: SiteSetting.title }
|
2023-12-06 16:25:00 -06:00
|
|
|
end
|
|
|
|
let(:reject_mail) do
|
2015-05-04 00:38:17 -05:00
|
|
|
RejectionMailer.send_rejection("email_reject_topic_not_found", user.email, template_args)
|
2023-12-06 16:25:00 -06:00
|
|
|
end
|
2015-05-04 00:38:17 -05:00
|
|
|
|
|
|
|
it "renders the senders email" do
|
|
|
|
expect(reject_mail.to).to eql([user.email])
|
|
|
|
end
|
|
|
|
|
|
|
|
it "renders the subject" do
|
|
|
|
expect(reject_mail.subject).to be_present
|
|
|
|
end
|
|
|
|
|
|
|
|
it "renders site title in subject" do
|
|
|
|
expect(reject_mail.subject).to match(SiteSetting.title)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "renders the body" do
|
|
|
|
expect(reject_mail.body).to be_present
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|