aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/send_file_test.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-01-07 13:23:10 -0800
committerYehuda Katz <wycats@gmail.com>2009-01-09 00:14:27 -0800
commitcf09fa74f7a9d9895b9a2d0fc475864d7e4bb56e (patch)
tree33244e36075904c8bb4382399475a03e88cfc5f7 /actionpack/test/controller/send_file_test.rb
parentc2d23affad0ed4542e3906c334a7b27b07fc695c (diff)
downloadrails-cf09fa74f7a9d9895b9a2d0fc475864d7e4bb56e.tar.gz
rails-cf09fa74f7a9d9895b9a2d0fc475864d7e4bb56e.tar.bz2
rails-cf09fa74f7a9d9895b9a2d0fc475864d7e4bb56e.zip
Include process methods in ActionController::TestCase only. No need to alias_method_chain :process either.
Diffstat (limited to 'actionpack/test/controller/send_file_test.rb')
-rw-r--r--actionpack/test/controller/send_file_test.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/actionpack/test/controller/send_file_test.rb b/actionpack/test/controller/send_file_test.rb
index 1b7486ad34..5fc79baa44 100644
--- a/actionpack/test/controller/send_file_test.rb
+++ b/actionpack/test/controller/send_file_test.rb
@@ -19,7 +19,8 @@ class SendFileController < ActionController::Base
def rescue_action(e) raise end
end
-class SendFileTest < Test::Unit::TestCase
+class SendFileTest < ActionController::TestCase
+ tests SendFileController
include TestFileUtils
Mime::Type.register "image/png", :png unless defined? Mime::PNG