aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Chelimsky <dchelimsky@gmail.com>2011-04-23 17:18:06 -0500
committerDavid Chelimsky <dchelimsky@gmail.com>2011-04-23 17:18:06 -0500
commit220782e4f0ace529f4a48ff207d286f804a2ed75 (patch)
tree62d42e3e3b171502c71d32de1279d4e19e3e745a
parentaf1b48926f49226c934995c322ee017239158cf3 (diff)
downloadrails-220782e4f0ace529f4a48ff207d286f804a2ed75.tar.gz
rails-220782e4f0ace529f4a48ff207d286f804a2ed75.tar.bz2
rails-220782e4f0ace529f4a48ff207d286f804a2ed75.zip
rename test case to better describe use case
-rw-r--r--actionpack/test/controller/view_paths_test.rb12
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