diff options
author | francis <francis> | 2008-01-23 01:48:14 +0000 |
---|---|---|
committer | francis <francis> | 2008-01-23 01:48:14 +0000 |
commit | 60eaae4f7df1f1dae91defb87d3707451c359cf4 (patch) | |
tree | e74835c37779a2f094e810960cda07b99a75330e /vendor/rails-2.0.2/actionmailer/test/tmail_test.rb | |
parent | 71d22c740302e1f83bbbd89b229734ea9c67493c (diff) |
Freeze in rails 2.0.2 (Am I going to regret having this beast in CVS?)
Diffstat (limited to 'vendor/rails-2.0.2/actionmailer/test/tmail_test.rb')
-rw-r--r-- | vendor/rails-2.0.2/actionmailer/test/tmail_test.rb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/vendor/rails-2.0.2/actionmailer/test/tmail_test.rb b/vendor/rails-2.0.2/actionmailer/test/tmail_test.rb new file mode 100644 index 000000000..b40d8945c --- /dev/null +++ b/vendor/rails-2.0.2/actionmailer/test/tmail_test.rb @@ -0,0 +1,22 @@ +require "#{File.dirname(__FILE__)}/abstract_unit" + +class TMailMailTest < Test::Unit::TestCase + def test_body + m = TMail::Mail.new + expected = 'something_with_underscores' + m.encoding = 'quoted-printable' + quoted_body = [expected].pack('*M') + m.body = quoted_body + assert_equal "something_with_underscores=\n", m.quoted_body + assert_equal expected, m.body + end + + def test_nested_attachments_are_recognized_correctly + fixture = File.read("#{File.dirname(__FILE__)}/fixtures/raw_email_with_nested_attachment") + mail = TMail::Mail.parse(fixture) + assert_equal 2, mail.attachments.length + assert_equal "image/png", mail.attachments.first.content_type + assert_equal 1902, mail.attachments.first.length + assert_equal "application/pkcs7-signature", mail.attachments.last.content_type + end +end |