mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 08:57:10 -06:00
b3d769ff4f
update rspec syntax to v3 change syntax to rspec v3 oops. fix typo mailers classes with rspec3 syntax helpers with rspec3 syntax jobs with rspec3 syntax serializers with rspec3 syntax views with rspec3 syntax support to rspec3 syntax category spec with rspec3 syntax
30 lines
682 B
Ruby
30 lines
682 B
Ruby
require 'spec_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).returns(mailer)
|
|
Jobs::InviteEmail.new.execute(invite_id: invite.id)
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
end
|
|
|