Files
danbooru/test/unit/maintenance/user/login_reminder_mailer_test.rb
2013-03-19 23:10:10 +11:00

19 lines
416 B
Ruby

require "test_helper"
module Maintenance
module User
class LoginReminderMailerTest < ActionMailer::TestCase
context "The login reminder mailer" do
setup do
@user = FactoryGirl.create(:user)
end
should "send the notie" do
LoginReminderMailer.notice(@user).deliver
assert !ActionMailer::Base.deliveries.empty?
end
end
end
end
end