aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/models')
-rw-r--r--activerecord/test/models/category.rb2
-rw-r--r--activerecord/test/models/company.rb4
2 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/test/models/category.rb b/activerecord/test/models/category.rb
index a06dd78011..4e9d247a4e 100644
--- a/activerecord/test/models/category.rb
+++ b/activerecord/test/models/category.rb
@@ -14,7 +14,7 @@ class Category < ActiveRecord::Base
:class_name => 'Post',
:conditions => { :title => 'Yet Another Testing Title' }
- has_and_belongs_to_many :posts_gruoped_by_title, :class_name => "Post", :group => "title"
+ has_and_belongs_to_many :posts_gruoped_by_title, :class_name => "Post", :group => "title", :select => "title"
def self.what_are_you
'a category...'
diff --git a/activerecord/test/models/company.rb b/activerecord/test/models/company.rb
index 1abf3f3918..0eb8ae0a15 100644
--- a/activerecord/test/models/company.rb
+++ b/activerecord/test/models/company.rb
@@ -55,8 +55,8 @@ class Firm < Company
has_many :readonly_clients, :class_name => 'Client', :readonly => true
has_many :clients_using_primary_key, :class_name => 'Client',
:primary_key => 'name', :foreign_key => 'firm_name'
- has_many :clients_grouped_by_firm_id, :class_name => "Client", :group => "firm_id"
- has_many :clients_grouped_by_name, :class_name => "Client", :group => "name"
+ has_many :clients_grouped_by_firm_id, :class_name => "Client", :group => "firm_id", :select => "firm_id"
+ has_many :clients_grouped_by_name, :class_name => "Client", :group => "name", :select => "name"
has_one :account, :foreign_key => "firm_id", :dependent => :destroy, :validate => true
has_one :unvalidated_account, :foreign_key => "firm_id", :class_name => 'Account', :validate => false