diff options
author | bogdanvlviv <bogdanvlviv@gmail.com> | 2017-05-23 09:08:59 +0300 |
---|---|---|
committer | bogdanvlviv <bogdanvlviv@gmail.com> | 2017-05-29 21:37:45 +0300 |
commit | 37fd3d6afb8f7fa184df92e6ce89fa032480605a (patch) | |
tree | 6c6461bdd08caf8fc8b628c9a050f9e44d6e12ba /actionview/lib | |
parent | 845aabbcd3805420090f8b92b50a4562577cf210 (diff) | |
download | rails-37fd3d6afb8f7fa184df92e6ce89fa032480605a.tar.gz rails-37fd3d6afb8f7fa184df92e6ce89fa032480605a.tar.bz2 rails-37fd3d6afb8f7fa184df92e6ce89fa032480605a.zip |
Pass params __FILE__ and __LINE__ + 1 if class_eval with <<
Diffstat (limited to 'actionview/lib')
-rw-r--r-- | actionview/lib/action_view/test_case.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/lib/action_view/test_case.rb b/actionview/lib/action_view/test_case.rb index ae4fec4337..80403799ab 100644 --- a/actionview/lib/action_view/test_case.rb +++ b/actionview/lib/action_view/test_case.rb @@ -71,7 +71,7 @@ module ActionView def helper_method(*methods) # Almost a duplicate from ActionController::Helpers methods.flatten.each do |method| - _helpers.module_eval <<-end_eval + _helpers.module_eval <<-end_eval, __FILE__, __LINE__ + 1 def #{method}(*args, &block) # def current_user(*args, &block) _test_case.send(%(#{method}), *args, &block) # _test_case.send(%(current_user), *args, &block) end # end |