aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test
diff options
context:
space:
mode:
authorMikel Lindsaar <raasdnil@gmail.com>2009-12-30 16:12:51 +1100
committerMikel Lindsaar <raasdnil@gmail.com>2009-12-30 16:12:51 +1100
commit345e622a20fd14a356a69da40e527075b1117b52 (patch)
tree19c33bbdc115a3823cf375c719db1ca741715363 /actionmailer/test
parent79550e8995e97bd0278bfe5c05151ac94495e9b1 (diff)
downloadrails-345e622a20fd14a356a69da40e527075b1117b52.tar.gz
rails-345e622a20fd14a356a69da40e527075b1117b52.tar.bz2
rails-345e622a20fd14a356a69da40e527075b1117b52.zip
Adding TMailCompat layer for :set_content_type and friends
Diffstat (limited to 'actionmailer/test')
-rw-r--r--actionmailer/test/tmail_compat_test.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/actionmailer/test/tmail_compat_test.rb b/actionmailer/test/tmail_compat_test.rb
new file mode 100644
index 0000000000..9b0e91f5f8
--- /dev/null
+++ b/actionmailer/test/tmail_compat_test.rb
@@ -0,0 +1,14 @@
+require 'abstract_unit'
+
+class TmailCompatTest < Test::Unit::TestCase
+
+ def test_set_content_type_raises_deprecation_warning
+ mail = Mail.new
+ STDERR.expects(:puts) # Deprecation warning
+ assert_nothing_raised do
+ mail.set_content_type "text/plain"
+ end
+ assert_equal mail.content_type.string, "text/plain"
+ end
+
+end