aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/test_case.rb
diff options
context:
space:
mode:
authorAlexey Vakhov <vakhov@gmail.com>2011-10-03 10:36:13 +0400
committerAlexey Vakhov <vakhov@gmail.com>2011-10-03 10:36:13 +0400
commitf51cb36fe9ef9edf67801df607ad034b12f7a8ea (patch)
treecf0e7694599d18bace7a2b62eac0f4e07f5261a6 /actionpack/lib/action_view/test_case.rb
parenta917c2ba8b669a1644a1df2a0002cb4676388dc7 (diff)
downloadrails-f51cb36fe9ef9edf67801df607ad034b12f7a8ea.tar.gz
rails-f51cb36fe9ef9edf67801df607ad034b12f7a8ea.tar.bz2
rails-f51cb36fe9ef9edf67801df607ad034b12f7a8ea.zip
missed underscore in AV::TestCase helper_method documentation
Diffstat (limited to 'actionpack/lib/action_view/test_case.rb')
-rw-r--r--actionpack/lib/action_view/test_case.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/test_case.rb b/actionpack/lib/action_view/test_case.rb
index c4d51d7946..1db079d0e3 100644
--- a/actionpack/lib/action_view/test_case.rb
+++ b/actionpack/lib/action_view/test_case.rb
@@ -63,7 +63,7 @@ module ActionView
methods.flatten.each do |method|
_helpers.module_eval <<-end_eval
def #{method}(*args, &block) # def current_user(*args, &block)
- _test_case.send(%(#{method}), *args, &block) # test_case.send(%(current_user), *args, &block)
+ _test_case.send(%(#{method}), *args, &block) # _test_case.send(%(current_user), *args, &block)
end # end
end_eval
end