aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/company.rb
diff options
context:
space:
mode:
authorPrem Sichanugrist <s@sikac.hu>2013-10-03 14:05:23 -0400
committerPrem Sichanugrist <s@sikac.hu>2013-10-03 14:11:12 -0400
commit68421f330b50f39ff58148dc2e734597be8abeef (patch)
tree2e37b8c034d7d2828e6f465fde61c50c1ce5b697 /activerecord/test/models/company.rb
parentc48c111bb2aa13d72f5ae6cf7d51a921766c7dfe (diff)
downloadrails-68421f330b50f39ff58148dc2e734597be8abeef.tar.gz
rails-68421f330b50f39ff58148dc2e734597be8abeef.tar.bz2
rails-68421f330b50f39ff58148dc2e734597be8abeef.zip
Port test from cf1904f to avoid future regression
Related issue: #11939, #12084
Diffstat (limited to 'activerecord/test/models/company.rb')
-rw-r--r--activerecord/test/models/company.rb5
1 files changed, 5 insertions, 0 deletions
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