aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/dispatch
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2013-11-02 14:30:03 -0500
committerGuillermo Iguaran <guilleiguaran@gmail.com>2013-11-02 14:30:03 -0500
commitf886fe2d8ccc900cde2629577e5c0be8c7d4c67f (patch)
treef2d92e0874f4984f8a2240debfe657c85b4a0792 /actionpack/test/dispatch
parentdb41eb8a6ea88b854bf5cd11070ea4245e1639c5 (diff)
downloadrails-f886fe2d8ccc900cde2629577e5c0be8c7d4c67f.tar.gz
rails-f886fe2d8ccc900cde2629577e5c0be8c7d4c67f.tar.bz2
rails-f886fe2d8ccc900cde2629577e5c0be8c7d4c67f.zip
Revert "Merge pull request #9660 from sebasoga/change_strong_parameters_require_behaviour"
This reverts commit c2b5a8e61ba0f35015e6ac949a5c8fce2042a1f2, reversing changes made to 1918b12c0429caec2a6134ac5e5b42ade103fe90. See: https://github.com/rails/rails/pull/9660#issuecomment-27627493
Diffstat (limited to 'actionpack/test/dispatch')
-rw-r--r--actionpack/test/dispatch/debug_exceptions_test.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/actionpack/test/dispatch/debug_exceptions_test.rb b/actionpack/test/dispatch/debug_exceptions_test.rb
index 6e28e4a982..3045a07ad6 100644
--- a/actionpack/test/dispatch/debug_exceptions_test.rb
+++ b/actionpack/test/dispatch/debug_exceptions_test.rb
@@ -43,8 +43,6 @@ class DebugExceptionsTest < ActionDispatch::IntegrationTest
raise ActionController::UrlGenerationError, "No route matches"
when "/parameter_missing"
raise ActionController::ParameterMissing, :missing_param_key
- when "/required_key_empty_value"
- raise ActionController::EmptyParameter, :empty_param_key
else
raise "puke!"
end
@@ -128,10 +126,6 @@ class DebugExceptionsTest < ActionDispatch::IntegrationTest
get "/parameter_missing", {}, {'action_dispatch.show_exceptions' => true}
assert_response 400
assert_match(/ActionController::ParameterMissing/, body)
-
- get "/required_key_empty_value", {}, {'action_dispatch.show_exceptions' => true}
- assert_response 400
- assert_match(/ActionController::EmptyParameter/, body)
end
test "rescue with text error for xhr request" do