From 6177a0be96cebac129d0e20d2b5ec009a00fa56c Mon Sep 17 00:00:00 2001 From: Mark Turner Date: Thu, 12 Aug 2010 09:43:15 -0700 Subject: added testcase for belongs_to with a counter_cache and touch [#5365 state:committed] Signed-off-by: Santiago Pastorino --- activerecord/test/cases/timestamp_test.rb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'activerecord') diff --git a/activerecord/test/cases/timestamp_test.rb b/activerecord/test/cases/timestamp_test.rb index 597b954d84..f5f116f3e6 100644 --- a/activerecord/test/cases/timestamp_test.rb +++ b/activerecord/test/cases/timestamp_test.rb @@ -84,6 +84,22 @@ class TimestampTest < ActiveRecord::TestCase Pet.belongs_to :owner, :touch => true end + def test_touching_a_record_with_a_belongs_to_that_uses_a_counter_cache_should_update_the_parent + Pet.belongs_to :owner, :counter_cache => :use_count, :touch => true + + pet = Pet.first + owner = pet.owner + owner.update_attribute(:happy_at, (time = 3.days.ago)) + previously_owner_updated_at = owner.updated_at + + pet.name = "I'm a parrot" + pet.save + + assert_not_equal previously_owner_updated_at, pet.owner.updated_at + ensure + Pet.belongs_to :owner, :counter_cache => :use_count, :touch => true + end + def test_touching_a_record_touches_parent_record_and_grandparent_record Toy.belongs_to :pet, :touch => true Pet.belongs_to :owner, :touch => true -- cgit v1.2.3