Fix ActiveSupport::TimeWithZone#localtime method with DateTime

[#5344 state:committed]

Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
This commit is contained in:
Alvaro Bautista
2010-09-11 21:12:10 +02:00
committed by Santiago Pastorino
parent c577e90f61
commit 5dc7f34dca
2 changed files with 12 additions and 1 deletions

View File

@@ -73,7 +73,7 @@ module ActiveSupport
# Returns a <tt>Time.local()</tt> instance of the simultaneous time in your system's <tt>ENV['TZ']</tt> zone
def localtime
utc.getlocal
utc.is_a?(DateTime) ? utc.to_time.getlocal : utc.getlocal
end
alias_method :getlocal, :localtime

View File

@@ -36,6 +36,10 @@ class TimeWithZoneTest < Test::Unit::TestCase
assert_equal @twz.object_id, @twz.in_time_zone(ActiveSupport::TimeZone['Eastern Time (US & Canada)']).object_id
end
def test_localtime
assert_equal @twz.localtime, @twz.utc.getlocal
end
def test_utc?
assert_equal false, @twz.utc?
assert_equal true, ActiveSupport::TimeWithZone.new(Time.utc(2000), ActiveSupport::TimeZone['UTC']).utc?
@@ -763,6 +767,13 @@ class TimeWithZoneMethodsForTimeAndDateTimeTest < Test::Unit::TestCase
end
end
def test_localtime
Time.zone_default = ActiveSupport::TimeZone['Eastern Time (US & Canada)']
assert_equal @dt.in_time_zone.localtime, @dt.in_time_zone.utc.to_time.getlocal
ensure
Time.zone_default = nil
end
def test_use_zone
Time.zone = 'Alaska'
Time.use_zone 'Hawaii' do