From 26174b2881c8f71a1477a1d69353262e682cbd32 Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Fri, 28 Sep 2007 23:55:50 +0000 Subject: Failing counter cache test. References #6896. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7675 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/test/associations_test.rb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'activerecord') diff --git a/activerecord/test/associations_test.rb b/activerecord/test/associations_test.rb index e6c7944dbb..59951d47fb 100755 --- a/activerecord/test/associations_test.rb +++ b/activerecord/test/associations_test.rb @@ -1158,6 +1158,24 @@ class BelongsToAssociationsTest < Test::Unit::TestCase assert_equal 0, Topic.find(t2.id).replies.size end + def test_belongs_to_counter_after_save + topic = Topic.create!(:title => "monday night") + topic.replies.create!(:title => "re: monday night", :content => "football") + assert_equal 1, Topic.find(topic.id)[:replies_count] + + topic.save! + assert_equal 1, Topic.find(topic.id)[:replies_count] + end + + def test_belongs_to_counter_after_update_attributes + topic = Topic.create!(:title => "37s") + topic.replies.create!(:title => "re: 37s", :content => "rails") + assert_equal 1, Topic.find(topic.id)[:replies_count] + + topic.update_attributes(:title => "37signals") + assert_equal 1, Topic.find(topic.id)[:replies_count] + end + def test_assignment_before_parent_saved client = Client.find(:first) apple = Firm.new("name" => "Apple") -- cgit v1.2.3