aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/routing
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-01-03 17:17:16 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-01-04 11:58:42 -0300
commitd282125a18c1697a9b5bb775628a2db239142ac7 (patch)
tree417ae772b2eb01111dcbe6c83674f19bab9ba7ca /actionpack/test/routing
parent2cc91c37bc2e32b7a04b2d782fb8f4a69a14503f (diff)
downloadrails-d282125a18c1697a9b5bb775628a2db239142ac7.tar.gz
rails-d282125a18c1697a9b5bb775628a2db239142ac7.tar.bz2
rails-d282125a18c1697a9b5bb775628a2db239142ac7.zip
Remove deprecate `*_path` helpers in email views
Diffstat (limited to 'actionpack/test/routing')
-rw-r--r--actionpack/test/routing/helper_test.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/actionpack/test/routing/helper_test.rb b/actionpack/test/routing/helper_test.rb
index 09ca7ff73b..0028aaa629 100644
--- a/actionpack/test/routing/helper_test.rb
+++ b/actionpack/test/routing/helper_test.rb
@@ -26,20 +26,6 @@ module ActionDispatch
x.new.pond_duck_path Duck.new
end
end
-
- def test_path_deprecation
- rs = ::ActionDispatch::Routing::RouteSet.new
- rs.draw do
- resources :ducks
- end
-
- x = Class.new {
- include rs.url_helpers(false)
- }
- assert_deprecated do
- assert_equal '/ducks', x.new.ducks_path
- end
- end
end
end
end