aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test
diff options
context:
space:
mode:
Diffstat (limited to 'actionmailer/test')
-rw-r--r--actionmailer/test/mail_render_test.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/actionmailer/test/mail_render_test.rb b/actionmailer/test/mail_render_test.rb
index 42454fef6e..a725dac4ca 100644
--- a/actionmailer/test/mail_render_test.rb
+++ b/actionmailer/test/mail_render_test.rb
@@ -15,6 +15,12 @@ class RenderMailer < ActionMailer::Base
body render(:file => "signed_up", :body => { :recipient => recipient })
end
+ def rxml_template(recipient)
+ recipients recipient
+ subject "rendering rxml template"
+ from "tester@example.com"
+ end
+
def initialize_defaults(method_name)
super
mailer_name "test_mailer"
@@ -55,6 +61,11 @@ class RenderHelperTest < Test::Unit::TestCase
mail = RenderMailer.create_file_template(@recipient)
assert_equal "Hello there, \n\nMr. test@localhost", mail.body.strip
end
+
+ def test_rxml_template
+ mail = RenderMailer.deliver_rxml_template(@recipient)
+ assert_equal "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<test/>", mail.body.strip
+ end
end
class FirstSecondHelperTest < Test::Unit::TestCase