aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/abstract_controller/layouts_test.rb
diff options
context:
space:
mode:
authorEmilio Tagua <miloops@gmail.com>2009-05-09 13:07:30 -0300
committerEmilio Tagua <miloops@gmail.com>2009-05-09 13:07:30 -0300
commit6c7d8cb8ac9e6b6775e9a54ef0be62dbaab592f5 (patch)
treec169325ddd18aedd18c66f22a53ba04190a0a41e /actionpack/test/abstract_controller/layouts_test.rb
parent8885b2d6c1855742600d0afdb9dfc002acb62e5e (diff)
parent8ee0c598dbe3f9fd133e85c69c6e43f62056646c (diff)
downloadrails-6c7d8cb8ac9e6b6775e9a54ef0be62dbaab592f5.tar.gz
rails-6c7d8cb8ac9e6b6775e9a54ef0be62dbaab592f5.tar.bz2
rails-6c7d8cb8ac9e6b6775e9a54ef0be62dbaab592f5.zip
Merge commit 'rails/master'
Diffstat (limited to 'actionpack/test/abstract_controller/layouts_test.rb')
-rw-r--r--actionpack/test/abstract_controller/layouts_test.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/test/abstract_controller/layouts_test.rb b/actionpack/test/abstract_controller/layouts_test.rb
index 3d4570bfef..a305a30a54 100644
--- a/actionpack/test/abstract_controller/layouts_test.rb
+++ b/actionpack/test/abstract_controller/layouts_test.rb
@@ -5,9 +5,9 @@ module AbstractControllerTests
# Base controller for these tests
class Base < AbstractController::Base
- use AbstractController::Renderer
- use AbstractController::Layouts
-
+ include AbstractController::Renderer
+ include AbstractController::Layouts
+
self.view_paths = [ActionView::FixtureTemplate::FixturePath.new(
"layouts/hello.erb" => "With String <%= yield %>",
"layouts/hello_override.erb" => "With Override <%= yield %>",