From acbec3e565909da5811488e88066a01f71b68a94 Mon Sep 17 00:00:00 2001 From: Michael Koziarski Date: Mon, 17 Sep 2007 09:29:02 +0000 Subject: Ensure that custom mutators aren't redefined by define_attribute_methods. [Koz] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7500 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/test/fixtures/topic.rb | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'activerecord/test/fixtures/topic.rb') diff --git a/activerecord/test/fixtures/topic.rb b/activerecord/test/fixtures/topic.rb index d7cd52e33e..dd71d6bf2b 100755 --- a/activerecord/test/fixtures/topic.rb +++ b/activerecord/test/fixtures/topic.rb @@ -13,8 +13,14 @@ class Topic < ActiveRecord::Base def topic_id id end + protected + def approved=(val) + @custom_approved = val + write_attribute(:approved, val) + end + def default_written_on self.written_on = Time.now unless attribute_present?("written_on") end -- cgit v1.2.3