aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2013-10-03 11:13:55 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2013-10-03 11:13:55 -0700
commit838be5266dc708a18cb900afb547596a4bd935ff (patch)
tree9f423569f5fc333d07cca6aed2dd21c634b3907e
parent680464bd2f436eedb13bfb9dc24311df9fa679f1 (diff)
parent68421f330b50f39ff58148dc2e734597be8abeef (diff)
downloadrails-838be5266dc708a18cb900afb547596a4bd935ff.tar.gz
rails-838be5266dc708a18cb900afb547596a4bd935ff.tar.bz2
rails-838be5266dc708a18cb900afb547596a4bd935ff.zip
Merge pull request #12435 from sikachu/master-port-12084
Port test from cf1904f to avoid future regression
-rw-r--r--activerecord/test/cases/inheritance_test.rb6
-rw-r--r--activerecord/test/models/company.rb5
2 files changed, 10 insertions, 1 deletions
diff --git a/activerecord/test/cases/inheritance_test.rb b/activerecord/test/cases/inheritance_test.rb
index a9be132801..73cf99a5d7 100644
--- a/activerecord/test/cases/inheritance_test.rb
+++ b/activerecord/test/cases/inheritance_test.rb
@@ -313,8 +313,12 @@ class InheritanceTest < ActiveRecord::TestCase
assert_kind_of SpecialSubscriber, SpecialSubscriber.find("webster132")
assert_nothing_raised { s = SpecialSubscriber.new("name" => "And breaaaaathe!"); s.id = 'roger'; s.save }
end
-end
+ def test_scope_inherited_properly
+ assert_nothing_raised { Company.of_first_firm }
+ assert_nothing_raised { Client.of_first_firm }
+ end
+end
class InheritanceComputeTypeTest < ActiveRecord::TestCase
fixtures :companies
diff --git a/activerecord/test/models/company.rb b/activerecord/test/models/company.rb
index 1aa77f95bf..0b0b304121 100644
--- a/activerecord/test/models/company.rb
+++ b/activerecord/test/models/company.rb
@@ -11,6 +11,11 @@ class Company < AbstractCompany
has_many :contracts
has_many :developers, :through => :contracts
+ scope :of_first_firm, lambda {
+ joins(:account => :firm).
+ where('firms.id' => 1)
+ }
+
def arbitrary_method
"I am Jack's profound disappointment"
end