aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/http/action_methods_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/controller/http/action_methods_test.rb')
-rw-r--r--actionpack/test/controller/http/action_methods_test.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/actionpack/test/controller/http/action_methods_test.rb b/actionpack/test/controller/http/action_methods_test.rb
deleted file mode 100644
index 20bb53aca2..0000000000
--- a/actionpack/test/controller/http/action_methods_test.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-require 'abstract_unit'
-
-class ActionMethodsHTTPController < ActionController::HTTP
- def one; end
- def two; end
- hide_action :two
-end
-
-class ActionMethodsHTTPTest < ActiveSupport::TestCase
- def setup
- @controller = ActionMethodsHTTPController.new
- end
-
- def test_action_methods
- assert_equal Set.new(%w(one)),
- @controller.class.action_methods,
- "#{@controller.controller_path} should not be empty!"
- end
-end