diff options
| -rw-r--r-- | activerecord/test/cases/timestamp_test.rb | 5 | 
1 files changed, 5 insertions, 0 deletions
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  | 
