diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2014-07-17 11:21:06 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2014-07-17 11:21:17 -0700 |
commit | 212057b912627b9c4056f911a43c83b18ae3ab34 (patch) | |
tree | 626fea2c2a9a505baeca73304ed816b79f0e9787 /actionpack/test | |
parent | 1a300b674810b85e6f55e4106cb27c1b2dbef499 (diff) | |
download | rails-212057b912627b9c4056f911a43c83b18ae3ab34.tar.gz rails-212057b912627b9c4056f911a43c83b18ae3ab34.tar.bz2 rails-212057b912627b9c4056f911a43c83b18ae3ab34.zip |
pass the route name to define_url_helper
this allows us to avoid 2 hash allocations per named helper definition,
also we can avoid a `merge` and `delete`.
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/abstract_unit.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/actionpack/test/abstract_unit.rb b/actionpack/test/abstract_unit.rb index 47d968982c..1c143a0f8c 100644 --- a/actionpack/test/abstract_unit.rb +++ b/actionpack/test/abstract_unit.rb @@ -350,7 +350,8 @@ end module RoutingTestHelpers def url_for(set, options) - set.url_for options.merge(:only_path => true) + route_name = options.delete :use_route + set.url_for options.merge(:only_path => true), route_name end def make_set(strict = true) |