mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 01:22:36 +08: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
28 lines
656 B
Ruby
28 lines
656 B
Ruby
require 'spec_helper'
|
|
require_dependency 'jobs/base'
|
|
|
|
describe Jobs::TestEmail do
|
|
|
|
context '.execute' do
|
|
it 'raises an error when the address is missing' do
|
|
expect { Jobs::TestEmail.new.execute({}) }.to raise_error(Discourse::InvalidParameters)
|
|
end
|
|
|
|
context 'with an address' do
|
|
|
|
let (:mailer) { Mail::Message.new(to: 'eviltrout@test.domain') }
|
|
|
|
it 'delegates to the test mailer' do
|
|
Email::Sender.any_instance.expects(:send)
|
|
TestMailer.expects(:send_test).with('eviltrout@test.domain').returns(mailer)
|
|
Jobs::TestEmail.new.execute(to_address: 'eviltrout@test.domain')
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
end
|
|
|