diff options
author | Carlhuda <carlhuda@engineyard.com> | 2010-03-18 11:30:31 -0700 |
---|---|---|
committer | Carlhuda <carlhuda@engineyard.com> | 2010-03-18 11:31:52 -0700 |
commit | 9da153c2d39f52c55af59a42b8551763b5821900 (patch) | |
tree | e93550058d98d796ebd7ef11afcba911eb7ce1f4 /actionmailer/test | |
parent | d164d868b3617b9e496cb76576c0ee0f20f7bdf5 (diff) | |
download | rails-9da153c2d39f52c55af59a42b8551763b5821900.tar.gz rails-9da153c2d39f52c55af59a42b8551763b5821900.tar.bz2 rails-9da153c2d39f52c55af59a42b8551763b5821900.zip |
Fix an error in isolated running of tests
Diffstat (limited to 'actionmailer/test')
-rw-r--r-- | actionmailer/test/old_base/url_test.rb | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/actionmailer/test/old_base/url_test.rb b/actionmailer/test/old_base/url_test.rb index 0b8bef233b..17b383cc2a 100644 --- a/actionmailer/test/old_base/url_test.rb +++ b/actionmailer/test/old_base/url_test.rb @@ -26,14 +26,6 @@ class UrlTestMailer < ActionMailer::Base @recipient = recipient @welcome_url = url_for :host => "example.com", :controller => "welcome", :action => "greeting" end - - class <<self - attr_accessor :received_body - end - - def receive(mail) - self.class.received_body = mail.body - end end class ActionMailerUrlTest < Test::Unit::TestCase |