From 8bc314b3b7dca6d3c796760ace1bb9c1d4cadf53 Mon Sep 17 00:00:00 2001 From: Franck Verrot Date: Tue, 19 Jul 2011 17:32:16 +0200 Subject: assign_nested_attributes_for_collection_association should work with Ruby 1.9 [Closes #2106] Children attributes can be either String's or Symbol's, so let's check if the object responds to to_i. --- activerecord/test/cases/nested_attributes_test.rb | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'activerecord/test/cases') diff --git a/activerecord/test/cases/nested_attributes_test.rb b/activerecord/test/cases/nested_attributes_test.rb index 6568eb1d18..67a9ed6cd8 100644 --- a/activerecord/test/cases/nested_attributes_test.rb +++ b/activerecord/test/cases/nested_attributes_test.rb @@ -755,6 +755,11 @@ module NestedAttributesOnACollectionAssociationTests Interest.reflect_on_association(:man).options[:inverse_of] = :interests end + def test_can_use_symbols_as_object_identifier + @pirate.attributes = { :parrots_attributes => { :foo => { :name => 'Lovely Day' }, :bar => { :name => 'Blown Away' } } } + assert_nothing_raised(NoMethodError) { @pirate.save! } + end + private def association_setter -- cgit v1.2.3