Skip to content

Commit

Permalink
Add failing test for 3.2.5 datetime attribute regression
Browse files Browse the repository at this point in the history
  • Loading branch information
earnold authored and kennyj committed Jun 4, 2012
1 parent 43f0af4 commit bebbdb5
Showing 1 changed file with 11 additions and 0 deletions.
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 bebbdb5

Please sign in to comment.