diff options
author | Florian Weber <csshsh@gmail.com> | 2005-12-21 15:50:31 +0000 |
---|---|---|
committer | Florian Weber <csshsh@gmail.com> | 2005-12-21 15:50:31 +0000 |
commit | c6e01f5b60c4864f0e92149d1e81077519f503d5 (patch) | |
tree | 40cc1aee95728263ea5d80c940759822b8d61aa2 /activerecord/test | |
parent | 43f6643b8b3a6892105ba9db23bdafd4c8d49ac3 (diff) | |
download | rails-c6e01f5b60c4864f0e92149d1e81077519f503d5.tar.gz rails-c6e01f5b60c4864f0e92149d1e81077519f503d5.tar.bz2 rails-c6e01f5b60c4864f0e92149d1e81077519f503d5.zip |
Fixed that saving a model with multiple habtm associations, would only save the first habtm association.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3331 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test')
-rwxr-xr-x | activerecord/test/associations_test.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/activerecord/test/associations_test.rb b/activerecord/test/associations_test.rb index e088432da8..e60035a5ac 100755 --- a/activerecord/test/associations_test.rb +++ b/activerecord/test/associations_test.rb @@ -1194,6 +1194,22 @@ class HasAndBelongsToManyAssociationsTest < Test::Unit::TestCase end end + def test_habtm_saving_multiple_relationships + new_project = Project.new("name" => "Grimetime") + amount_of_developers = 4 + developers = (0..amount_of_developers).collect {|i| Developer.create(:name => "JME #{i}") } + + new_project.developer_ids = [developers[0].id, developers[1].id] + new_project.developers_with_callback_ids = [developers[2].id, developers[3].id] + assert new_project.save + + new_project.reload + assert_equal amount_of_developers, new_project.developers.size + amount_of_developers.times do |i| + assert_equal developers[i].name, new_project.developers[i].name + end + end + def test_build devel = Developer.find(1) proj = devel.projects.build("name" => "Projekt") |