missed underscore in AV::TestCase helper_method documentation

This commit is contained in:
Alexey Vakhov
2011-10-03 10:36:13 +04:00
parent a917c2ba8b
commit f51cb36fe9

View File

@@ -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