diff options
author | Joshua Peek <josh@joshpeek.com> | 2009-01-31 23:51:16 -0600 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2009-01-31 23:51:42 -0600 |
commit | 63b4fe53abec586e122cde629adde5000a517f9c (patch) | |
tree | 7555d801942b542267a7601bf105a7fae3722625 /actionpack/test/controller | |
parent | 28b65c9120f347bd61569402a5e50ca6d4b9b6e7 (diff) | |
download | rails-63b4fe53abec586e122cde629adde5000a517f9c.tar.gz rails-63b4fe53abec586e122cde629adde5000a517f9c.tar.bz2 rails-63b4fe53abec586e122cde629adde5000a517f9c.zip |
Remove ancient tests for CGI parsing bug
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r-- | actionpack/test/controller/request/url_encoded_params_parsing_test.rb | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/actionpack/test/controller/request/url_encoded_params_parsing_test.rb b/actionpack/test/controller/request/url_encoded_params_parsing_test.rb index 90865afc4e..7e6099a041 100644 --- a/actionpack/test/controller/request/url_encoded_params_parsing_test.rb +++ b/actionpack/test/controller/request/url_encoded_params_parsing_test.rb @@ -80,36 +80,6 @@ class UrlEncodedParamsParsingTest < ActionController::IntegrationTest assert_parses expected, query end - test "parses params with non alphanumeric name" do - query = "a/b[c]=d" - expected = { "a/b" => { "c" => "d" }} - assert_parses expected, query - end - - test "parses params with single brackets in the middle" do - query = "a/b[c]d=e" - expected = { "a/b" => {} } - assert_parses expected, query - end - - test "parses params with separated brackets" do - query = "a/b@[c]d[e]=f" - expected = { "a/b@" => { }} - assert_parses expected, query - end - - test "parses params with separated brackets and array" do - query = "a/b@[c]d[e][]=f" - expected = { "a/b@" => { }} - assert_parses expected, query - end - - test "parses params with unmatched brackets and array" do - query = "a/b@[c][d[e][]=f" - expected = { "a/b@" => { "c" => { }}} - assert_parses expected, query - end - test "parses params with nil key" do query = "=&test2=value1" expected = { "test2" => "value1" } |