mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
16 lines
360 B
Ruby
16 lines
360 B
Ruby
require "spec_helper"
|
|
|
|
describe InviteMailer do
|
|
|
|
describe "send_invite" do
|
|
let(:invite) { Fabricate(:invite) }
|
|
subject { InviteMailer.send_invite(invite) }
|
|
|
|
its(:to) { should == [invite.email] }
|
|
its(:subject) { should be_present }
|
|
its(:body) { should be_present }
|
|
its(:from) { should == [SiteSetting.notification_email] }
|
|
end
|
|
|
|
|
|
end
|