discourse/spec/mailers/test_mailer_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

19 lines
419 B
Ruby

require "spec_helper"
describe TestMailer do
describe "send_test" do
it "works" do
test_mailer = TestMailer.send_test('marcheline@adventuretime.ooo')
expect(test_mailer.from).to eq([SiteSetting.notification_email])
expect(test_mailer.to).to eq(['marcheline@adventuretime.ooo'])
expect(test_mailer.subject).to be_present
expect(test_mailer.body).to be_present
end
end
end