aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/test_case.rb
diff options
context:
space:
mode:
authorAlexey Vakhov <vakhov@gmail.com>2011-10-03 12:05:25 +0400
committerAlexey Vakhov <vakhov@gmail.com>2011-10-03 14:27:42 +0400
commit8df7fe3f630e13da1585c151f6f2f986ea7dcdfd (patch)
tree4254e070ffdc72ada7dbef23e4ae7ae490aae3db /actionpack/lib/action_view/test_case.rb
parent0defbc6bfeff053983ef65739b2dcc080b2ad227 (diff)
downloadrails-8df7fe3f630e13da1585c151f6f2f986ea7dcdfd.tar.gz
rails-8df7fe3f630e13da1585c151f6f2f986ea7dcdfd.tar.bz2
rails-8df7fe3f630e13da1585c151f6f2f986ea7dcdfd.zip
normalize arg for ActionView::TestCase tests method
Diffstat (limited to 'actionpack/lib/action_view/test_case.rb')
-rw-r--r--actionpack/lib/action_view/test_case.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/test_case.rb b/actionpack/lib/action_view/test_case.rb
index c4d51d7946..7df95b0cb0 100644
--- a/actionpack/lib/action_view/test_case.rb
+++ b/actionpack/lib/action_view/test_case.rb
@@ -50,7 +50,12 @@ module ActionView
module ClassMethods
def tests(helper_class)
- self.helper_class = helper_class
+ case helper_class
+ when String, Symbol
+ self.helper_class = "#{helper_class.to_s.underscore}_helper".camelize.safe_constantize
+ when Module
+ self.helper_class = helper_class
+ end
end
def determine_default_helper_class(name)