From aa316e27b7f6f17328f2be6c481f7d9ee3a92f86 Mon Sep 17 00:00:00 2001 From: Farley Knight Date: Tue, 31 May 2011 06:08:11 -0400 Subject: Tests for issue #1360 --- activerecord/test/models/contract.rb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'activerecord/test/models/contract.rb') diff --git a/activerecord/test/models/contract.rb b/activerecord/test/models/contract.rb index 94fd48e12a..2cf5aa7a85 100644 --- a/activerecord/test/models/contract.rb +++ b/activerecord/test/models/contract.rb @@ -1,4 +1,19 @@ class Contract < ActiveRecord::Base belongs_to :company belongs_to :developer + + before_save :hi + after_save :bye + + attr_accessor :hi_count, :bye_count + + def hi + @hi_count ||= 0 + @hi_count += 1 + end + + def bye + @bye_count ||= 0 + @bye_count += 1 + end end -- cgit v1.2.3