Skip to content

Commit

Permalink
Merge pull request rails#6619 from kennyj/fix_6591
Browse files Browse the repository at this point in the history
Fix rails#6591 Rails 3.2.5 Regression: incorrect _changed? for datetimes
  • Loading branch information
drogus committed Jun 4, 2012
2 parents d10eb69 + 635032f commit 2186540
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
Expand Up @@ -57,8 +57,9 @@ def #{attr_name}=(original_time)
time = time.is_a?(String) ? Time.zone.parse(time) : time.to_time rescue time
end
time = time.in_time_zone rescue nil if time
changed = read_attribute(:#{attr_name}) != time
write_attribute(:#{attr_name}, original_time)
#{attr_name}_will_change!
#{attr_name}_will_change! if changed
@attributes_cache["#{attr_name}"] = time
end
EOV
Expand Down
11 changes: 11 additions & 0 deletions activerecord/test/cases/dirty_test.rb
Expand Up @@ -78,6 +78,17 @@ def test_time_attributes_changes_with_time_zone
assert_equal old_created_on, pirate.created_on_was
end
end

def test_setting_time_attributes_with_time_zone_field_to_itself_should_not_be_marked_as_a_change
in_time_zone 'Paris' do
target = Class.new(ActiveRecord::Base)
target.table_name = 'pirates'

pirate = target.create
pirate.created_on = pirate.created_on
assert !pirate.created_on_changed?
end
end

def test_time_attributes_changes_without_time_zone_by_skip
in_time_zone 'Paris' do
Expand Down

0 comments on commit 2186540

Please sign in to comment.