discourse/spec/jobs/test_email_spec.rb
Luciano Sousa b3d769ff4f Update rspec syntax to v3
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
2015-01-05 11:59:30 -03:00

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