aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test/mail_test.rb
diff options
context:
space:
mode:
authorJosé Valim and Mikel Lindsaar <pair@programming.com>2010-01-26 01:43:41 +0100
committerJosé Valim and Mikel Lindsaar <pair@programming.com>2010-01-26 01:43:41 +0100
commit6589976533b7a6850390ed5d6526ca719e56c5ca (patch)
treec4b3bfb8bb961e70d963a4b97bcf19ef1f82411e /actionmailer/test/mail_test.rb
parent1b3cb54ebae685d4db9eefc99ce68b36d5641751 (diff)
downloadrails-6589976533b7a6850390ed5d6526ca719e56c5ca.tar.gz
rails-6589976533b7a6850390ed5d6526ca719e56c5ca.tar.bz2
rails-6589976533b7a6850390ed5d6526ca719e56c5ca.zip
Remove old files, add some information to docs and improve test suite.
Diffstat (limited to 'actionmailer/test/mail_test.rb')
-rw-r--r--actionmailer/test/mail_test.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/actionmailer/test/mail_test.rb b/actionmailer/test/mail_test.rb
deleted file mode 100644
index f18dfdc156..0000000000
--- a/actionmailer/test/mail_test.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-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
- 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