aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/send_file_test.rb
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2008-06-25 15:24:12 -0500
committerJoshua Peek <josh@joshpeek.com>2008-06-25 15:24:12 -0500
commit339491a6b37722497ebafe9998e17507f47e8fd6 (patch)
tree96e7dc63607054c6e3ce6f08e41a9e96d8a44ea5 /actionpack/test/controller/send_file_test.rb
parenta9259ccfe05690dc4cb7993d551603c39619c27f (diff)
downloadrails-339491a6b37722497ebafe9998e17507f47e8fd6.tar.gz
rails-339491a6b37722497ebafe9998e17507f47e8fd6.tar.bz2
rails-339491a6b37722497ebafe9998e17507f47e8fd6.zip
Set precompiled fixture load path constant to speed up tests
Diffstat (limited to 'actionpack/test/controller/send_file_test.rb')
-rw-r--r--actionpack/test/controller/send_file_test.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/actionpack/test/controller/send_file_test.rb b/actionpack/test/controller/send_file_test.rb
index 406825fe59..ddec51d173 100644
--- a/actionpack/test/controller/send_file_test.rb
+++ b/actionpack/test/controller/send_file_test.rb
@@ -1,13 +1,11 @@
require 'abstract_unit'
-
module TestFileUtils
def file_name() File.basename(__FILE__) end
def file_path() File.expand_path(__FILE__) end
def file_data() File.open(file_path, 'rb') { |f| f.read } end
end
-
class SendFileController < ActionController::Base
include TestFileUtils
layout "layouts/standard" # to make sure layouts don't interfere
@@ -21,7 +19,7 @@ class SendFileController < ActionController::Base
def rescue_action(e) raise end
end
-SendFileController.view_paths = [ File.dirname(__FILE__) + "/../fixtures/" ]
+SendFileController.view_paths = [FIXTURE_LOAD_PATH]
class SendFileTest < Test::Unit::TestCase
include TestFileUtils