From 6e50863383fc51a3f0ceb5c2793fd90084b3fc95 Mon Sep 17 00:00:00 2001 From: Brian Ryckbost Date: Tue, 13 Dec 2011 12:31:11 -0500 Subject: [PATCH] Specify a from address for the mailer specs --- spec/performable_mailer_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/performable_mailer_spec.rb b/spec/performable_mailer_spec.rb index ceecc5e40..c4b98a95f 100644 --- a/spec/performable_mailer_spec.rb +++ b/spec/performable_mailer_spec.rb @@ -3,7 +3,7 @@ require 'action_mailer' class MyMailer < ActionMailer::Base def signup(email) - mail :to => email, :subject => "Delaying Emails" + mail :to => email, :subject => "Delaying Emails", :from => "delayedjob@example.com" end end