aboutsummaryrefslogtreecommitdiffstats
path: root/test/functional/file_request_controller_test.rb
diff options
context:
space:
mode:
authorfrancis <francis>2007-10-16 06:56:10 +0000
committerfrancis <francis>2007-10-16 06:56:10 +0000
commit77b519dcbef4f01bd597c529669ee787d9560490 (patch)
tree3e1654187c1ef3f2c6f1622add80b46348f8f2d9 /test/functional/file_request_controller_test.rb
parent161b6001e194b763e83567a0c7f128ce4467df7d (diff)
Remove test skeleton for controller that is no longer called that.
Diffstat (limited to 'test/functional/file_request_controller_test.rb')
-rw-r--r--test/functional/file_request_controller_test.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/functional/file_request_controller_test.rb b/test/functional/file_request_controller_test.rb
deleted file mode 100644
index 7e3bdd156..000000000
--- a/test/functional/file_request_controller_test.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-require File.dirname(__FILE__) + '/../test_helper'
-require 'request_controller'
-
-# Re-raise errors caught by the controller.
-class RequestController; def rescue_action(e) raise e end; end
-
-class RequestControllerTest < Test::Unit::TestCase
- def setup
- @controller = FileRequestController.new
- @request = ActionController::TestRequest.new
- @response = ActionController::TestResponse.new
- end
-
- # Replace this with your real tests.
- def test_truth
- assert true
- end
-end