diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2006-08-20 14:38:58 +0000 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2006-08-20 14:38:58 +0000 |
commit | edb42088571f9ad61908032c3df12b4700e099e9 (patch) | |
tree | f806b2d7dd3d2b855ed81698b9bad69ceefd0d78 /activerecord/test | |
parent | 04d2d5f2884677542b7062ece98bd91978e78b2b (diff) | |
download | rails-edb42088571f9ad61908032c3df12b4700e099e9.tar.gz rails-edb42088571f9ad61908032c3df12b4700e099e9.tar.bz2 rails-edb42088571f9ad61908032c3df12b4700e099e9.zip |
to_xml: correct naming of included associations. Closes #5831.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4794 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test')
-rwxr-xr-x | activerecord/test/base_test.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/test/base_test.rb b/activerecord/test/base_test.rb index f52253dd8b..8fe57c35b9 100755 --- a/activerecord/test/base_test.rb +++ b/activerecord/test/base_test.rb @@ -1319,6 +1319,11 @@ class BasicsTest < Test::Unit::TestCase assert xml.include?(%(<replies><reply>)) assert xml.include?(%(<title>The Second Topic's of the day</title>)) end + + def test_array_to_xml_including_has_many_association + xml = [ topics(:first), topics(:second) ].to_xml(:indent => 0, :skip_instruct => true, :include => :replies) + assert xml.include?(%(<replies><reply>)) + end def test_array_to_xml_including_has_one_association xml = [ companies(:first_firm), companies(:rails_core) ].to_xml(:indent => 0, :skip_instruct => true, :include => :account) |