aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test/mail_test.rb
diff options
context:
space:
mode:
authorJosé Valim and Mikel Lindsaar <pair@programming.com>2010-01-24 19:36:42 +0100
committerJosé Valim and Mikel Lindsaar <pair@programming.com>2010-01-24 19:36:42 +0100
commitbd96614101262e0ad0cc176ed8e2d95a5c17936b (patch)
tree1612a3baaf634bd180b2b145db12b7eeb3096010 /actionmailer/test/mail_test.rb
parent99f960a3d73b62a957988bbee0906264f35afc2e (diff)
downloadrails-bd96614101262e0ad0cc176ed8e2d95a5c17936b.tar.gz
rails-bd96614101262e0ad0cc176ed8e2d95a5c17936b.tar.bz2
rails-bd96614101262e0ad0cc176ed8e2d95a5c17936b.zip
Move old tests to a specific folder and add some delivery method tests.
Diffstat (limited to 'actionmailer/test/mail_test.rb')
-rw-r--r--actionmailer/test/mail_test.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/actionmailer/test/mail_test.rb b/actionmailer/test/mail_test.rb
index ea6f25d157..f18dfdc156 100644
--- a/actionmailer/test/mail_test.rb
+++ b/actionmailer/test/mail_test.rb
@@ -8,7 +8,6 @@ class MailTest < Test::Unit::TestCase
quoted_body = [expected].pack('*M')
m.body = quoted_body
assert_equal "something_with_underscores=\r\n", m.body.encoded
- # CHANGED: body returns object, not string, Changed m.body to m.body.to_s
assert_equal expected, m.body.to_s
end
@@ -20,5 +19,4 @@ class MailTest < Test::Unit::TestCase
assert_equal 1902, mail.attachments.first.decoded.length
assert_equal "application/pkcs7-signature", mail.attachments.last.mime_type
end
-
end