diff options
author | Yehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com> | 2009-06-15 17:33:25 -0700 |
---|---|---|
committer | Yehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com> | 2009-06-15 17:33:25 -0700 |
commit | 1fbfa3e705c37656c308436f21d42b09591ba60e (patch) | |
tree | 883b5fcc57cba0ea7fe7e217f0fe4fc8dfd3c165 | |
parent | 3c15cba17519e7a4acc3958662f8f3693837c179 (diff) | |
download | rails-1fbfa3e705c37656c308436f21d42b09591ba60e.tar.gz rails-1fbfa3e705c37656c308436f21d42b09591ba60e.tar.bz2 rails-1fbfa3e705c37656c308436f21d42b09591ba60e.zip |
More _write_layout_method removal
-rw-r--r-- | actionpack/test/controller/layout_test.rb | 9 | ||||
-rw-r--r-- | actionpack/test/controller/mime_responds_test.rb | 5 |
2 files changed, 0 insertions, 14 deletions
diff --git a/actionpack/test/controller/layout_test.rb b/actionpack/test/controller/layout_test.rb index cb9bdf57bb..c3d7b0778d 100644 --- a/actionpack/test/controller/layout_test.rb +++ b/actionpack/test/controller/layout_test.rb @@ -38,15 +38,6 @@ end class MultipleExtensions < LayoutTest end -if defined?(ActionController::Http) - LayoutTest._write_layout_method - ProductController._write_layout_method - ItemController._write_layout_method - ThirdPartyTemplateLibraryController._write_layout_method - MultipleExtensions._write_layout_method - ControllerNameSpace::NestedController._write_layout_method -end - class LayoutAutoDiscoveryTest < ActionController::TestCase def setup super diff --git a/actionpack/test/controller/mime_responds_test.rb b/actionpack/test/controller/mime_responds_test.rb index 56b49251c6..0c6822a5b1 100644 --- a/actionpack/test/controller/mime_responds_test.rb +++ b/actionpack/test/controller/mime_responds_test.rb @@ -512,11 +512,6 @@ class SuperPostController < PostController end end -if defined?(ActionController::Http) - PostController._write_layout_method - SuperPostController._write_layout_method -end - class MimeControllerLayoutsTest < ActionController::TestCase tests PostController |