diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2014-05-08 10:33:57 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2014-05-08 10:33:57 -0700 |
commit | de6cda5e5fab17bd087b7fd6b6fa7a6cfa738ef1 (patch) | |
tree | acb6da8d7a27157e77111dbf55990d24002905f4 /actionview | |
parent | 6ffce1791ab989afb0f3bc1dd579804fc9a5c756 (diff) | |
download | rails-de6cda5e5fab17bd087b7fd6b6fa7a6cfa738ef1.tar.gz rails-de6cda5e5fab17bd087b7fd6b6fa7a6cfa738ef1.tar.bz2 rails-de6cda5e5fab17bd087b7fd6b6fa7a6cfa738ef1.zip |
add more tests around the polymorphic url api
Diffstat (limited to 'actionview')
-rw-r--r-- | actionview/test/activerecord/polymorphic_routes_test.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/actionview/test/activerecord/polymorphic_routes_test.rb b/actionview/test/activerecord/polymorphic_routes_test.rb index a42888d873..e7769c7ce5 100644 --- a/actionview/test/activerecord/polymorphic_routes_test.rb +++ b/actionview/test/activerecord/polymorphic_routes_test.rb @@ -183,6 +183,12 @@ class PolymorphicRoutesTest < ActionController::TestCase end end + def test_with_class_list_of_one + with_test_routes do + assert_url "http://example.com/projects", [@project.class] + end + end + def test_with_new_record with_test_routes do assert_url "http://example.com/projects", @project @@ -389,6 +395,12 @@ class PolymorphicRoutesTest < ActionController::TestCase end end + def test_with_array_containing_single_string_name + with_test_routes do + assert_url "http://example.com/projects", ["projects"] + end + end + def test_with_array_containing_symbols with_test_routes do assert_url "http://example.com/series/new", [:new, :series] |