aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/template/render_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionview/test/template/render_test.rb')
-rw-r--r--actionview/test/template/render_test.rb9
1 files changed, 1 insertions, 8 deletions
diff --git a/actionview/test/template/render_test.rb b/actionview/test/template/render_test.rb
index 372b85a4a5..b8d8717db4 100644
--- a/actionview/test/template/render_test.rb
+++ b/actionview/test/template/render_test.rb
@@ -19,15 +19,8 @@ module RenderTestCases
end.with_view_paths(paths, @assigns)
controller = TestController.new
- view = @view
- @controller_view = Class.new(controller.view_context_class) do
- include view.compiled_method_container
-
- define_method(:compiled_method_container) do
- view.compiled_method_container
- end
- end.new(controller.view_renderer, controller.view_assigns, controller)
+ @controller_view = controller.view_context_class.with_empty_template_cache.new(controller.view_renderer, controller.view_assigns, controller)
# Reload and register danish language for testing
I18n.backend.store_translations "da", {}