aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test/mail_test.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2009-12-27 12:18:46 +0100
committerJosé Valim <jose.valim@gmail.com>2009-12-27 12:18:46 +0100
commit4747a9a57ef4af8cd5172c9da5198cd632adce83 (patch)
treef90f9e33cb52905fce26bdea0a7c2768e10cc82e /actionmailer/test/mail_test.rb
parent47e5caa96bffc04c8c0b287a975a609fb048e530 (diff)
downloadrails-4747a9a57ef4af8cd5172c9da5198cd632adce83.tar.gz
rails-4747a9a57ef4af8cd5172c9da5198cd632adce83.tar.bz2
rails-4747a9a57ef4af8cd5172c9da5198cd632adce83.zip
Getting rid of some warnings in AM suite.
Diffstat (limited to 'actionmailer/test/mail_test.rb')
-rw-r--r--actionmailer/test/mail_test.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/actionmailer/test/mail_test.rb b/actionmailer/test/mail_test.rb
new file mode 100644
index 0000000000..ea6f25d157
--- /dev/null
+++ b/actionmailer/test/mail_test.rb
@@ -0,0 +1,24 @@
+require 'abstract_unit'
+
+class MailTest < Test::Unit::TestCase
+ def test_body
+ m = Mail.new
+ expected = 'something_with_underscores'
+ m.content_transfer_encoding = 'quoted-printable'
+ 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
+
+ def test_nested_attachments_are_recognized_correctly
+ fixture = File.read("#{File.dirname(__FILE__)}/fixtures/raw_email_with_nested_attachment")
+ mail = Mail.new(fixture)
+ assert_equal 2, mail.attachments.length
+ assert_equal "image/png", mail.attachments.first.mime_type
+ assert_equal 1902, mail.attachments.first.decoded.length
+ assert_equal "application/pkcs7-signature", mail.attachments.last.mime_type
+ end
+
+end