aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/new_base/render_implicit_action_test.rb
diff options
context:
space:
mode:
authorYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-06-17 15:32:55 -0700
committerYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-06-17 15:32:55 -0700
commitd8f352e970ec86e8b791f9994465a3678a44281f (patch)
treecb8f52f0c288638211cbf228d06c75631f4cb799 /actionpack/test/new_base/render_implicit_action_test.rb
parent7ac9f29093c8f4d9739008a52d7d3265cfb04e23 (diff)
downloadrails-d8f352e970ec86e8b791f9994465a3678a44281f.tar.gz
rails-d8f352e970ec86e8b791f9994465a3678a44281f.tar.bz2
rails-d8f352e970ec86e8b791f9994465a3678a44281f.zip
Rename ActionView::Template::Path ActionView::Resolver
Diffstat (limited to 'actionpack/test/new_base/render_implicit_action_test.rb')
-rw-r--r--actionpack/test/new_base/render_implicit_action_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/new_base/render_implicit_action_test.rb b/actionpack/test/new_base/render_implicit_action_test.rb
index 2846df48da..fd96e1955f 100644
--- a/actionpack/test/new_base/render_implicit_action_test.rb
+++ b/actionpack/test/new_base/render_implicit_action_test.rb
@@ -2,7 +2,7 @@ require File.join(File.expand_path(File.dirname(__FILE__)), "test_helper")
module RenderImplicitAction
class SimpleController < ::ApplicationController
- self.view_paths = [ActionView::Template::FixturePath.new(
+ self.view_paths = [ActionView::FixtureResolver.new(
"render_implicit_action/simple/hello_world.html.erb" => "Hello world!",
"render_implicit_action/simple/hyphen-ated.html.erb" => "Hello hyphen-ated!"
)]