aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2011-10-05 18:42:18 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2011-10-05 18:42:18 +0530
commit46ce7f1f77b91d3762e7eeab16a19afcb79c8477 (patch)
tree89b3b5c780f130e628a67af48a2a657ee40eda6f /actionpack/lib
parentae4febdf841f4de2889c05ecd1b2b19e1d7f1697 (diff)
parentea49935a6e0eca8783bc8d1bb46a6c518c073cac (diff)
downloadrails-46ce7f1f77b91d3762e7eeab16a19afcb79c8477.tar.gz
rails-46ce7f1f77b91d3762e7eeab16a19afcb79c8477.tar.bz2
rails-46ce7f1f77b91d3762e7eeab16a19afcb79c8477.zip
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'actionpack/lib')
-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