diff options
author | David Chelimsky <dchelimsky@gmail.com> | 2011-04-23 17:18:06 -0500 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2011-04-25 09:31:48 +0200 |
commit | 8d00dfca7f6ea528ed5344b6cc1058c9f0402361 (patch) | |
tree | 8d7d83663a887e02ddaa6d11b858a9c84fdf5398 /actionpack/test/controller | |
parent | f2fc921447727a2647f6fab247569b61d546bf10 (diff) | |
download | rails-8d00dfca7f6ea528ed5344b6cc1058c9f0402361.tar.gz rails-8d00dfca7f6ea528ed5344b6cc1058c9f0402361.tar.bz2 rails-8d00dfca7f6ea528ed5344b6cc1058c9f0402361.zip |
rename test case to better describe use case
Signed-off-by: José Valim <jose.valim@gmail.com>
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r-- | actionpack/test/controller/view_paths_test.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/actionpack/test/controller/view_paths_test.rb b/actionpack/test/controller/view_paths_test.rb index 9280a1c2d3..42356be1ea 100644 --- a/actionpack/test/controller/view_paths_test.rb +++ b/actionpack/test/controller/view_paths_test.rb @@ -131,8 +131,8 @@ class ViewLoadPathsTest < ActionController::TestCase assert_equal "Hello overridden world!", @response.body end - def test_override_view_paths_with_custom_resolver - resolver_class = Class.new(ActionView::PathResolver) do + def test_decorate_view_paths_with_custom_resolver + decorator_class = Class.new(ActionView::PathResolver) do def initialize(path_set) @path_set = path_set end @@ -140,7 +140,7 @@ class ViewLoadPathsTest < ActionController::TestCase def find_all(*args) @path_set.find_all(*args).collect do |template| ::ActionView::Template.new( - "Customized body", + "Decorated body", template.identifier, template.handler, { @@ -152,12 +152,12 @@ class ViewLoadPathsTest < ActionController::TestCase end end - resolver = resolver_class.new(TestController.view_paths) - TestController.view_paths = ActionView::PathSet.new.push(resolver) + decorator = decorator_class.new(TestController.view_paths) + TestController.view_paths = ActionView::PathSet.new.push(decorator) get :hello_world assert_response :success - assert_equal "Customized body", @response.body + assert_equal "Decorated body", @response.body end def test_inheritance |