aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorAlexey Vakhov <vakhov@gmail.com>2011-10-03 10:19:15 +0400
committerAlexey Vakhov <vakhov@gmail.com>2011-10-03 12:12:07 +0400
commit8e946daf6957b46744a90d25266b0ec5e8537079 (patch)
tree6389c3d2ebc82de712d62612f80e0e4996f18b97 /actionpack/lib
parentd68884f4fddf5452f1dcbdf1a7b35d5889926fe5 (diff)
downloadrails-8e946daf6957b46744a90d25266b0ec5e8537079.tar.gz
rails-8e946daf6957b46744a90d25266b0ec5e8537079.tar.bz2
rails-8e946daf6957b46744a90d25266b0ec5e8537079.zip
normalize arg for AC::TestCase tests class method
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_controller/test_case.rb16
1 files changed, 14 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/test_case.rb b/actionpack/lib/action_controller/test_case.rb
index a83fa74795..964ec6d5ae 100644
--- a/actionpack/lib/action_controller/test_case.rb
+++ b/actionpack/lib/action_controller/test_case.rb
@@ -333,9 +333,21 @@ module ActionController
module ClassMethods
# Sets the controller class name. Useful if the name can't be inferred from test class.
- # Expects +controller_class+ as a constant. Example: <tt>tests WidgetController</tt>.
+ # Normalizes +controller_class+ before using. Examples:
+ #
+ # tests WidgetController
+ # tests :widget
+ # tests 'widget'
+ #
def tests(controller_class)
- self.controller_class = controller_class
+ case controller_class
+ when String, Symbol
+ self.controller_class = "#{controller_class.to_s.underscore}_controller".camelize.constantize
+ when Class
+ self.controller_class = controller_class
+ else
+ raise ArgumentError, "controller class must be a String, Symbol, or Class"
+ end
end
def controller_class=(new_class)