aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-06-08 23:35:46 -0700
committerJosé Valim <jose.valim@gmail.com>2011-06-08 23:35:46 -0700
commit077f65c36f4feff65f5a94180943927c35e280f0 (patch)
tree420dbd6c0669247cf2b9dcbff168857da7da5b60
parent0ad228027d4cca2b24a38aa84f6360f2732110d1 (diff)
parent277eb057336bd8a7f7bd0aa9fee28dd85c25616c (diff)
downloadrails-077f65c36f4feff65f5a94180943927c35e280f0.tar.gz
rails-077f65c36f4feff65f5a94180943927c35e280f0.tar.bz2
rails-077f65c36f4feff65f5a94180943927c35e280f0.zip
Merge pull request #1588 from neerajdotname/remove_unused_class_with_symbol_returning
class WithSymbolReturningString is not used anywhere in the test.
-rw-r--r--actionpack/test/abstract/layouts_test.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/actionpack/test/abstract/layouts_test.rb b/actionpack/test/abstract/layouts_test.rb
index 5ed6aa68b5..86208899f8 100644
--- a/actionpack/test/abstract/layouts_test.rb
+++ b/actionpack/test/abstract/layouts_test.rb
@@ -87,18 +87,6 @@ module AbstractControllerTests
end
end
- class WithSymbolReturningString < Base
- layout :no_hello
-
- def index
- render :template => ActionView::Template::Text.new("Hello missing symbol!")
- end
- private
- def no_hello
- nil
- end
- end
-
class WithSymbolReturningNil < Base
layout :nilz