diff options
author | Jon Leighton <j@jonathanleighton.com> | 2011-08-16 19:14:06 +0100 |
---|---|---|
committer | Jon Leighton <j@jonathanleighton.com> | 2011-08-16 19:14:20 +0100 |
commit | 8e236152457ed48bb436e9bffb4c5d6d4b6a26d4 (patch) | |
tree | 8399705099848741f225d1c71916438717bc82b0 /actionpack/test | |
parent | d0d25a9317aaea794f30e067e9388fe4e08bcde5 (diff) | |
download | rails-8e236152457ed48bb436e9bffb4c5d6d4b6a26d4.tar.gz rails-8e236152457ed48bb436e9bffb4c5d6d4b6a26d4.tar.bz2 rails-8e236152457ed48bb436e9bffb4c5d6d4b6a26d4.zip |
Use lazy load hooks to set parameter wrapping configuration. This means that it doesn't force Action Controller / Active Record to load, but it doesn't fail if they have already loaded. Thanks @josevalim for the hint.
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/controller/params_wrapper_test.rb | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/actionpack/test/controller/params_wrapper_test.rb b/actionpack/test/controller/params_wrapper_test.rb index e1914cf894..7bef1e8d5d 100644 --- a/actionpack/test/controller/params_wrapper_test.rb +++ b/actionpack/test/controller/params_wrapper_test.rb @@ -180,13 +180,6 @@ class ParamsWrapperTest < ActionController::TestCase assert_parameters({ 'username' => 'sikachu', 'title' => 'Developer', 'user' => { 'username' => 'sikachu', 'title' => 'Developer' }}) end end - - def test_assignment_alias - with_default_wrapper_options do - UsersController.wrap_parameters = { :format => [:foo] } - assert_equal({ :format => [:foo], :name => "user" }, UsersController._wrapper_options) - end - end end class NamespacedParamsWrapperTest < ActionController::TestCase |