aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/activerecord/polymorphic_routes_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionview/test/activerecord/polymorphic_routes_test.rb')
-rw-r--r--actionview/test/activerecord/polymorphic_routes_test.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/actionview/test/activerecord/polymorphic_routes_test.rb b/actionview/test/activerecord/polymorphic_routes_test.rb
index f6ff3069f8..fef27ef492 100644
--- a/actionview/test/activerecord/polymorphic_routes_test.rb
+++ b/actionview/test/activerecord/polymorphic_routes_test.rb
@@ -242,21 +242,6 @@ class PolymorphicRoutesTest < ActionController::TestCase
end
end
- def test_new_record_arguments
- params = nil
- extend Module.new {
- define_method("projects_url") { |*args|
- params = args
- super(*args)
- }
- }
-
- with_test_routes do
- assert_equal "http://example.com/projects", polymorphic_url(@project)
- assert_equal [], params
- end
- end
-
def test_with_destroyed_record
with_test_routes do
@project.destroy