diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2014-05-02 11:38:37 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2014-05-02 11:38:37 -0700 |
commit | dece005f0a8aa1f4210e381efb429eca5d793d91 (patch) | |
tree | b4c91637670acc7eaf79e571c8268db9d8823f58 /actionview | |
parent | 61d5731859238845fa0aced433359c0e4095da4e (diff) | |
download | rails-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.rb | 25 |
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 |