diff options
author | Łukasz Strzałkowski <lukasz.strzalkowski@gmail.com> | 2013-07-16 16:11:43 +0200 |
---|---|---|
committer | Łukasz Strzałkowski <lukasz.strzalkowski@gmail.com> | 2013-08-25 11:39:10 +0200 |
commit | 087c66d18337415d0ff5e46f63a9e1fd32afb13c (patch) | |
tree | 0de49c894c5b321e72ba2ae64b062c46e63f9f12 /actionview/test | |
parent | fc118d0b41ecb6b7c900554822ffdcbf149d75b3 (diff) | |
download | rails-087c66d18337415d0ff5e46f63a9e1fd32afb13c.tar.gz rails-087c66d18337415d0ff5e46f63a9e1fd32afb13c.tar.bz2 rails-087c66d18337415d0ff5e46f63a9e1fd32afb13c.zip |
Remove ApplicationController & RoutingTestHelpers
Diffstat (limited to 'actionview/test')
-rw-r--r-- | actionview/test/abstract_unit.rb | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/actionview/test/abstract_unit.rb b/actionview/test/abstract_unit.rb index 149a253818..04598e4080 100644 --- a/actionview/test/abstract_unit.rb +++ b/actionview/test/abstract_unit.rb @@ -293,9 +293,6 @@ module ActionController end end -class ::ApplicationController < ActionController::Base -end - module ActionView class TestCase # Must repeat the setup because AV::TestCase is a duplication @@ -333,9 +330,3 @@ module ActionDispatch end end -module RoutingTestHelpers - def url_for(set, options, recall = nil) - set.send(:url_for, options.merge(:only_path => true, :_recall => recall)) - end -end - |