From 47315760bc893a48738e6592a0cbb3fef506bcd7 Mon Sep 17 00:00:00 2001 From: Franck Verrot Date: Tue, 25 Jan 2011 23:28:31 +0100 Subject: Test timestamp_attributes_for_update_in_model that was already in place Signed-off-by: Santiago Pastorino --- activerecord/test/cases/timestamp_test.rb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/activerecord/test/cases/timestamp_test.rb b/activerecord/test/cases/timestamp_test.rb index 428dfedef2..62e3a084d0 100644 --- a/activerecord/test/cases/timestamp_test.rb +++ b/activerecord/test/cases/timestamp_test.rb @@ -160,4 +160,9 @@ class TimestampTest < ActiveRecord::TestCase toy = Toy.first assert_equal toy.send(:timestamp_attributes_for_create_in_model), [:created_at] end + + def test_timestamp_attributes_for_update_in_model + toy = Toy.first + assert_equal toy.send(:timestamp_attributes_for_update_in_model), [:updated_at] + end end -- cgit v1.2.3