diff options
author | Dalibor Nasevic <dalibor.nasevic@gmail.com> | 2011-03-02 01:55:22 +0100 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2011-03-02 18:01:26 -0200 |
commit | b7cf1f4ccfaac3b50c09df484062fdc92b340876 (patch) | |
tree | 863bd8044ea5986683b8edba43475b5fde0330f4 /actionmailer/test | |
parent | 272ede9b9abeba6c987b66f047e24b472e99921d (diff) | |
download | rails-b7cf1f4ccfaac3b50c09df484062fdc92b340876.tar.gz rails-b7cf1f4ccfaac3b50c09df484062fdc92b340876.tar.bz2 rails-b7cf1f4ccfaac3b50c09df484062fdc92b340876.zip |
No need of instance variable
[#6502 state:committed]
Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
Diffstat (limited to 'actionmailer/test')
-rw-r--r-- | actionmailer/test/base_test.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actionmailer/test/base_test.rb b/actionmailer/test/base_test.rb index 7ed9d4a5c0..1b793d255e 100644 --- a/actionmailer/test/base_test.rb +++ b/actionmailer/test/base_test.rb @@ -32,21 +32,21 @@ class BaseTest < ActiveSupport::TestCase end test "mail() with bcc, cc, content_type, charset, mime_version, reply_to and date" do - @time = Time.now.beginning_of_day.to_datetime + time = Time.now.beginning_of_day.to_datetime email = BaseMailer.welcome(:bcc => 'bcc@test.lindsaar.net', :cc => 'cc@test.lindsaar.net', :content_type => 'multipart/mixed', :charset => 'iso-8559-1', :mime_version => '2.0', :reply_to => 'reply-to@test.lindsaar.net', - :date => @time) + :date => time) assert_equal(['bcc@test.lindsaar.net'], email.bcc) assert_equal(['cc@test.lindsaar.net'], email.cc) assert_equal('multipart/mixed; charset=iso-8559-1', email.content_type) assert_equal('iso-8559-1', email.charset) assert_equal('2.0', email.mime_version) assert_equal(['reply-to@test.lindsaar.net'], email.reply_to) - assert_equal(@time, email.date) + assert_equal(time, email.date) end test "mail() renders the template using the method being processed" do |