aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-01-12 15:05:07 +0100
committerYves Senn <yves.senn@gmail.com>2013-01-13 00:20:38 +0100
commitec07735641e4df13b644a85f1f300cf20134995a (patch)
tree5540e6545472ef3a4916f6915bb957530d7835a4 /activerecord/test/cases/associations
parent6581d798e830a7820dd54fe95d40014c0e2057fe (diff)
downloadrails-ec07735641e4df13b644a85f1f300cf20134995a.tar.gz
rails-ec07735641e4df13b644a85f1f300cf20134995a.tar.bz2
rails-ec07735641e4df13b644a85f1f300cf20134995a.zip
`CollectionAssociation#empty?` respects newly builded records
Diffstat (limited to 'activerecord/test/cases/associations')
-rw-r--r--activerecord/test/cases/associations/has_many_associations_test.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/activerecord/test/cases/associations/has_many_associations_test.rb b/activerecord/test/cases/associations/has_many_associations_test.rb
index 7e6c7d5862..28400970fb 100644
--- a/activerecord/test/cases/associations/has_many_associations_test.rb
+++ b/activerecord/test/cases/associations/has_many_associations_test.rb
@@ -625,6 +625,13 @@ class HasManyAssociationsTest < ActiveRecord::TestCase
assert_equal 3, company.clients_of_firm.size
end
+ def test_collection_not_empty_after_building
+ company = companies(:first_firm)
+ assert_predicate company.contracts, :empty?
+ company.contracts.build
+ assert_not_predicate company.contracts, :empty?
+ end
+
def test_collection_size_twice_for_regressions
post = posts(:thinking)
assert_equal 0, post.readers.size