diff options
author | Yehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com> | 2009-06-17 15:32:55 -0700 |
---|---|---|
committer | Yehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com> | 2009-06-17 15:32:55 -0700 |
commit | d8f352e970ec86e8b791f9994465a3678a44281f (patch) | |
tree | cb8f52f0c288638211cbf228d06c75631f4cb799 /actionpack/test/template/compiled_templates_test.rb | |
parent | 7ac9f29093c8f4d9739008a52d7d3265cfb04e23 (diff) | |
download | rails-d8f352e970ec86e8b791f9994465a3678a44281f.tar.gz rails-d8f352e970ec86e8b791f9994465a3678a44281f.tar.bz2 rails-d8f352e970ec86e8b791f9994465a3678a44281f.zip |
Rename ActionView::Template::Path ActionView::Resolver
Diffstat (limited to 'actionpack/test/template/compiled_templates_test.rb')
-rw-r--r-- | actionpack/test/template/compiled_templates_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/template/compiled_templates_test.rb b/actionpack/test/template/compiled_templates_test.rb index b29b03f99d..9c268aef27 100644 --- a/actionpack/test/template/compiled_templates_test.rb +++ b/actionpack/test/template/compiled_templates_test.rb @@ -41,7 +41,7 @@ class CompiledTemplatesTest < Test::Unit::TestCase end def render_without_cache(*args) - path = ActionView::Template::FileSystemPathWithFallback.new(FIXTURE_LOAD_PATH) + path = ActionView::FileSystemResolverWithFallback.new(FIXTURE_LOAD_PATH) view_paths = ActionView::Base.process_view_paths(path) ActionView::Base.new(view_paths, {}).render(*args) end |