aboutsummaryrefslogtreecommitdiffstats
path: root/actionview
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2014-05-02 11:38:37 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2014-05-02 11:38:37 -0700
commitdece005f0a8aa1f4210e381efb429eca5d793d91 (patch)
treeb4c91637670acc7eaf79e571c8268db9d8823f58 /actionview
parent61d5731859238845fa0aced433359c0e4095da4e (diff)
downloadrails-dece005f0a8aa1f4210e381efb429eca5d793d91.tar.gz
rails-dece005f0a8aa1f4210e381efb429eca5d793d91.tar.bz2
rails-dece005f0a8aa1f4210e381efb429eca5d793d91.zip
passing a nil should always raise an ArgumentError
Diffstat (limited to 'actionview')
-rw-r--r--actionview/test/activerecord/polymorphic_routes_test.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/actionview/test/activerecord/polymorphic_routes_test.rb b/actionview/test/activerecord/polymorphic_routes_test.rb
index afb714484b..c1f5a75cd4 100644
--- a/actionview/test/activerecord/polymorphic_routes_test.rb
+++ b/actionview/test/activerecord/polymorphic_routes_test.rb
@@ -112,6 +112,31 @@ class PolymorphicRoutesTest < ActionController::TestCase
end
end
+ def test_with_empty_list
+ with_test_routes do
+ assert_raise ArgumentError, "Nil location provided. Can't build URI." do
+ polymorphic_url([])
+ end
+ end
+ end
+
+ def test_with_nil_id
+ with_test_routes do
+ assert_raise ArgumentError, "Nil location provided. Can't build URI." do
+ polymorphic_url({ :id => nil })
+ end
+ end
+ end
+
+ def test_with_nil_in_list
+ with_test_routes do
+ assert_raise ArgumentError, "Nil location provided. Can't build URI." do
+ @series.save
+ polymorphic_url([nil, @series])
+ end
+ end
+ end
+
def test_with_record
with_test_routes do
@project.save