aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations/has_one_associations_test.rb
diff options
context:
space:
mode:
authorjosevalim <jose.valim@gmail.com>2008-05-23 11:20:13 +0200
committerMichael Koziarski <michael@koziarski.com>2008-05-24 17:58:03 +1200
commit8d0b4fa39fab6e5d1e3382b4b137cc47e559b0be (patch)
tree06a4ff2e8bbb4646082fd627ed6633d79a4ee949 /activerecord/test/cases/associations/has_one_associations_test.rb
parent5b8d0f134a5766aa1b3d0945b79f04d2bb911c02 (diff)
downloadrails-8d0b4fa39fab6e5d1e3382b4b137cc47e559b0be.tar.gz
rails-8d0b4fa39fab6e5d1e3382b4b137cc47e559b0be.tar.bz2
rails-8d0b4fa39fab6e5d1e3382b4b137cc47e559b0be.zip
Added :select option to has_one and belongs_to, remove unused :order option on belongs_to.
Signed-off-by: Michael Koziarski <michael@koziarski.com> [#241 state:resolved]
Diffstat (limited to 'activerecord/test/cases/associations/has_one_associations_test.rb')
-rwxr-xr-x[-rw-r--r--]activerecord/test/cases/associations/has_one_associations_test.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/test/cases/associations/has_one_associations_test.rb b/activerecord/test/cases/associations/has_one_associations_test.rb
index 9e99caa7b7..e7d4de8246 100644..100755
--- a/activerecord/test/cases/associations/has_one_associations_test.rb
+++ b/activerecord/test/cases/associations/has_one_associations_test.rb
@@ -24,6 +24,11 @@ class HasOneAssociationsTest < ActiveRecord::TestCase
assert_queries(0) { firms.each(&:account) }
end
+ def test_with_select
+ assert_equal Firm.find(1).account_with_select.attributes.size, 2
+ assert_equal Firm.find(1, :include => :account_with_select).attributes.size, 2
+ end
+
def test_can_marshal_has_one_association_with_nil_target
firm = Firm.new
assert_nothing_raised do