diff options
author | Matthew Draper <matthew@trebex.net> | 2017-05-30 18:08:22 +0930 |
---|---|---|
committer | Matthew Draper <matthew@trebex.net> | 2017-05-30 18:20:58 +0930 |
commit | 75226cc7d8224762932d4f5593ea366f25cbf61e (patch) | |
tree | 97ad5d4e90083b612037de88d362679f38ebad64 /activerecord/test/cases/associations | |
parent | 6847877a30fd8d578f72db0cf40674f71a9b6286 (diff) | |
parent | 5632f73042bc543d59e6f3e913e0d2cd44b54a65 (diff) | |
download | rails-75226cc7d8224762932d4f5593ea366f25cbf61e.tar.gz rails-75226cc7d8224762932d4f5593ea366f25cbf61e.tar.bz2 rails-75226cc7d8224762932d4f5593ea366f25cbf61e.zip |
Merge pull request #29098 from kamipo/fix_association_with_extension_issues
Fix association with extension issues
Diffstat (limited to 'activerecord/test/cases/associations')
-rw-r--r-- | activerecord/test/cases/associations/extension_test.rb | 6 | ||||
-rw-r--r-- | activerecord/test/cases/associations/has_many_associations_test.rb | 10 |
2 files changed, 15 insertions, 1 deletions
diff --git a/activerecord/test/cases/associations/extension_test.rb b/activerecord/test/cases/associations/extension_test.rb index 87d842f21d..f707a170f5 100644 --- a/activerecord/test/cases/associations/extension_test.rb +++ b/activerecord/test/cases/associations/extension_test.rb @@ -78,6 +78,12 @@ class AssociationsExtensionsTest < ActiveRecord::TestCase assert_equal post.association(:comments), post.comments.where("1=1").the_association end + def test_association_with_default_scope + assert_raises OopsError do + posts(:welcome).comments.destroy_all + end + end + private def extend!(model) diff --git a/activerecord/test/cases/associations/has_many_associations_test.rb b/activerecord/test/cases/associations/has_many_associations_test.rb index 6a479a344c..a794eba691 100644 --- a/activerecord/test/cases/associations/has_many_associations_test.rb +++ b/activerecord/test/cases/associations/has_many_associations_test.rb @@ -2251,7 +2251,15 @@ class HasManyAssociationsTest < ActiveRecord::TestCase test "association with extend option with multiple extensions" do post = posts(:welcome) assert_equal "lifo", post.comments_with_extend_2.author - assert_equal "hello", post.comments_with_extend_2.greeting + assert_equal "hullo", post.comments_with_extend_2.greeting + end + + test "extend option affects per association" do + post = posts(:welcome) + assert_equal "lifo", post.comments_with_extend.author + assert_equal "lifo", post.comments_with_extend_2.author + assert_equal "hello", post.comments_with_extend.greeting + assert_equal "hullo", post.comments_with_extend_2.greeting end test "delete record with complex joins" do |