diff options
author | Eloy Duran <eloy.de.enige@gmail.com> | 2008-10-13 16:08:41 +0200 |
---|---|---|
committer | Pratik Naik <pratiknaik@gmail.com> | 2008-10-13 18:38:48 +0200 |
commit | b47c76b1dfaaf1d99413b94179077cd58552ba88 (patch) | |
tree | b996916760c1056cb1c8d8193bc0ae18e64e4787 /actionpack/lib | |
parent | 1b44bbff425711d62d81e6565eb3afc2ba77bc4b (diff) | |
download | rails-b47c76b1dfaaf1d99413b94179077cd58552ba88.tar.gz rails-b47c76b1dfaaf1d99413b94179077cd58552ba88.tar.bz2 rails-b47c76b1dfaaf1d99413b94179077cd58552ba88.zip |
Make sure named routes with parameters can be used in tests before a request has been done. [#1208 state:resolved]
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_controller/test_case.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/actionpack/lib/action_controller/test_case.rb b/actionpack/lib/action_controller/test_case.rb index 6a39039504..4fc60f0697 100644 --- a/actionpack/lib/action_controller/test_case.rb +++ b/actionpack/lib/action_controller/test_case.rb @@ -134,6 +134,9 @@ module ActionController @controller = self.class.controller_class.new @controller.request = @request = TestRequest.new @response = TestResponse.new + + @controller.params = {} + @controller.send(:initialize_current_url) end # Cause the action to be rescued according to the regular rules for rescue_action when the visitor is not local |