diff options
Diffstat (limited to 'actionpack/test/abstract/helper_test.rb')
-rw-r--r-- | actionpack/test/abstract/helper_test.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/actionpack/test/abstract/helper_test.rb b/actionpack/test/abstract/helper_test.rb index 555669efa5..a596ebe6f7 100644 --- a/actionpack/test/abstract/helper_test.rb +++ b/actionpack/test/abstract/helper_test.rb @@ -6,8 +6,9 @@ module AbstractController module Testing class ControllerWithHelpers < AbstractController::Base - include ActionView::Rendering include AbstractController::Helpers + include AbstractController::Rendering + include ActionView::Rendering def with_module render :inline => "Module <%= included_method %>" |