From e58f11683003ec1515113103895e18a8c9003aa3 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 23 Apr 2013 09:48:46 -0700 Subject: Remove test case also related to the belongs_to touch feature --- activerecord/test/cases/timestamp_test.rb | 20 -------------------- 1 file changed, 20 deletions(-) (limited to 'activerecord/test') diff --git a/activerecord/test/cases/timestamp_test.rb b/activerecord/test/cases/timestamp_test.rb index 22c5da3faa..777a2b70dd 100644 --- a/activerecord/test/cases/timestamp_test.rb +++ b/activerecord/test/cases/timestamp_test.rb @@ -176,26 +176,6 @@ class TimestampTest < ActiveRecord::TestCase assert_not_equal time, owner.updated_at end - def test_clearing_association_touches_the_old_record - klass = Class.new(ActiveRecord::Base) do - def self.name; 'Toy'; end - belongs_to :pet, touch: true - end - - toy = klass.find(1) - pet = toy.pet - time = 3.days.ago.at_beginning_of_hour - - pet.update_columns(updated_at: time) - - toy.pet = nil - toy.save! - - pet.reload - - assert_not_equal time, pet.updated_at - end - def test_timestamp_attributes_for_create toy = Toy.first assert_equal toy.send(:timestamp_attributes_for_create), [:created_at, :created_on] -- cgit v1.2.3