mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 08:57:10 -06:00
4ea21fa2d0
This change both speeds up specs (less strings to allocate) and helps catch cases where methods in Discourse are mutating inputs. Overall we will be migrating everything to use #frozen_string_literal: true it will take a while, but this is the first and safest move in this direction
35 lines
932 B
Ruby
35 lines
932 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
require_dependency 'jobs/base'
|
|
|
|
describe Jobs::InviteEmail do
|
|
|
|
context '.execute' do
|
|
|
|
it 'raises an error when the invite_id is missing' do
|
|
expect { Jobs::InviteEmail.new.execute({}) }.to raise_error(Discourse::InvalidParameters)
|
|
end
|
|
|
|
context 'with an invite id' do
|
|
|
|
let (:mailer) { Mail::Message.new(to: 'eviltrout@test.domain') }
|
|
let (:invite) { Fabricate(:invite) }
|
|
|
|
it 'delegates to the test mailer' do
|
|
Email::Sender.any_instance.expects(:send)
|
|
InviteMailer.expects(:send_invite).with(invite, nil).returns(mailer)
|
|
Jobs::InviteEmail.new.execute(invite_id: invite.id)
|
|
end
|
|
|
|
it "aborts without error when the invite doesn't exist anymore" do
|
|
invite.destroy
|
|
InviteMailer.expects(:send_invite).never
|
|
Jobs::InviteEmail.new.execute(invite_id: invite.id)
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
end
|