diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2017-05-29 22:11:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-29 22:11:53 +0200 |
commit | bd40038533e00e2d8cb3571d54585772b959fe66 (patch) | |
tree | f8e26d66122c9909e2a0e47eb559b88dc3cf05c2 /actionview/lib/action_view | |
parent | cbf378bc2725afe55e81d74bf97be7d484309863 (diff) | |
parent | 37fd3d6afb8f7fa184df92e6ce89fa032480605a (diff) | |
download | rails-bd40038533e00e2d8cb3571d54585772b959fe66.tar.gz rails-bd40038533e00e2d8cb3571d54585772b959fe66.tar.bz2 rails-bd40038533e00e2d8cb3571d54585772b959fe66.zip |
Merge pull request #29191 from bogdanvlviv/pass_params_filename_lineno_to_class_eval
Pass params __FILE__ and __LINE__ + 1 if class_eval with <<
Diffstat (limited to 'actionview/lib/action_view')
-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 |