diff options
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/controller/request_test.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/actionpack/test/controller/request_test.rb b/actionpack/test/controller/request_test.rb index 68d6afb426..bae4d6ffe4 100644 --- a/actionpack/test/controller/request_test.rb +++ b/actionpack/test/controller/request_test.rb @@ -705,6 +705,12 @@ class UrlEncodedRequestParameterParsingTest < Test::Unit::TestCase expected = { "test2" => "value1" } assert_equal expected, ActionController::AbstractRequest.parse_request_parameters(input) end + + def test_parse_params_with_array_prefix_and_hashes + input = { "a[][b][c]" => %w(d) } + expected = {"a" => [{"b" => {"c" => "d"}}]} + assert_equal expected, ActionController::AbstractRequest.parse_request_parameters(input) + end end |