aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2017-05-31 19:37:57 +0200
committerGitHub <noreply@github.com>2017-05-31 19:37:57 +0200
commit6fecb188fa14e7ef7b8bbc0b8e5070306338d22c (patch)
treef975cad2fdddfe5d33e286facf2e6430375ec93a /activerecord/test
parent7c800fe5e338540ef195f071a7f3604ed4197f3f (diff)
parent262ef5df706dcfaa8770108acbc178db32e3ae88 (diff)
downloadrails-6fecb188fa14e7ef7b8bbc0b8e5070306338d22c.tar.gz
rails-6fecb188fa14e7ef7b8bbc0b8e5070306338d22c.tar.bz2
rails-6fecb188fa14e7ef7b8bbc0b8e5070306338d22c.zip
Merge pull request #29296 from kamipo/delegate_extending_to_relation
Add missing `delegate :extending, to: :all`
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/cases/scoping/named_scoping_test.rb6
-rw-r--r--activerecord/test/models/comment.rb2
2 files changed, 8 insertions, 0 deletions
diff --git a/activerecord/test/cases/scoping/named_scoping_test.rb b/activerecord/test/cases/scoping/named_scoping_test.rb
index 0c2cffe0d3..483ea7128d 100644
--- a/activerecord/test/cases/scoping/named_scoping_test.rb
+++ b/activerecord/test/cases/scoping/named_scoping_test.rb
@@ -551,6 +551,12 @@ class NamedScopingTest < ActiveRecord::TestCase
assert_equal 1, SpecialComment.where(body: "go crazy").created.count
end
+ def test_model_class_should_respond_to_extending
+ assert_raises OopsError do
+ Comment.unscoped.oops_comments.destroy_all
+ end
+ end
+
def test_model_class_should_respond_to_none
assert !Topic.none?
Topic.delete_all
diff --git a/activerecord/test/models/comment.rb b/activerecord/test/models/comment.rb
index 8cba788598..d227f6fe86 100644
--- a/activerecord/test/models/comment.rb
+++ b/activerecord/test/models/comment.rb
@@ -29,6 +29,8 @@ class Comment < ActiveRecord::Base
default_scope { extending OopsExtension }
+ scope :oops_comments, -> { extending OopsExtension }
+
# Should not be called if extending modules that having the method exists on an association.
def self.greeting
raise