aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test/base_test.rb
diff options
context:
space:
mode:
authorJosé Valim and Mikel Lindsaar <pair@programming.com>2010-01-22 13:56:06 +0100
committerJosé Valim and Mikel Lindsaar <pair@programming.com>2010-01-22 13:56:06 +0100
commit1cd55928c6f638affeb5d89293f478817675d7b3 (patch)
tree9e4cf61c8dcdbf2a7aafe72cadadea53d18b79ae /actionmailer/test/base_test.rb
parentdcb925369389fa98d1548b25504c8e3a07eaeea3 (diff)
downloadrails-1cd55928c6f638affeb5d89293f478817675d7b3.tar.gz
rails-1cd55928c6f638affeb5d89293f478817675d7b3.tar.bz2
rails-1cd55928c6f638affeb5d89293f478817675d7b3.zip
First work on implicit multipart.
Diffstat (limited to 'actionmailer/test/base_test.rb')
-rw-r--r--actionmailer/test/base_test.rb18
1 files changed, 17 insertions, 1 deletions
diff --git a/actionmailer/test/base_test.rb b/actionmailer/test/base_test.rb
index f22b20a6ba..8502b29ba4 100644
--- a/actionmailer/test/base_test.rb
+++ b/actionmailer/test/base_test.rb
@@ -62,6 +62,10 @@ class BaseTest < ActiveSupport::TestCase
:transfer_encoding => "base64" }
mail(DEFAULT_HEADERS)
end
+
+ def implicit_multipart
+ mail(DEFAULT_HEADERS)
+ end
end
test "method call to mail does not raise error" do
@@ -156,7 +160,19 @@ class BaseTest < ActiveSupport::TestCase
email = BaseMailer.deliver_welcome(:subject => nil)
assert_equal "New Subject!", email.subject
end
-
+
+ test "implicit multipart tests" do
+ require 'ruby-debug'
+ $BREAK = true
+ email = BaseMailer.deliver_implicit_multipart
+
+ assert_equal(2, email.parts.size)
+
+ assert_equal("multipart/alternate", email.mime_type)
+ assert_equal("text/plain", email.parts[0].mime_type)
+ assert_equal("text/html", email.parts[1].mime_type)
+ end
+
protected
# Execute the block setting the given values and restoring old values after