diff --git a/ChangeLog b/ChangeLog index 349be66812..e061f04b3e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat Aug 17 23:25:19 2013 Benoit Daloze + + * test/ruby/test_time.rb: use the in_timezone() helper + and define it at the top with other helpers. + Sat Aug 17 22:20:47 2013 Nobuyoshi Nakada * time.c (time_mload): ignore auxiliary data, offset and zone, if diff --git a/test/ruby/test_time.rb b/test/ruby/test_time.rb index ba3b2ee314..ec6986a824 100644 --- a/test/ruby/test_time.rb +++ b/test/ruby/test_time.rb @@ -15,6 +15,15 @@ class TestTime < Test::Unit::TestCase $VERBOSE = @verbose end + def in_timezone(zone) + orig_zone = ENV['TZ'] + + ENV['TZ'] = zone + yield + ensure + ENV['TZ'] = orig_zone + end + def no_leap_seconds? # 1972-06-30T23:59:60Z is the first leap second. Time.utc(1972, 7, 1, 0, 0, 0) - Time.utc(1972, 6, 30, 23, 59, 59) == 1 @@ -291,18 +300,15 @@ class TestTime < Test::Unit::TestCase end def test_marshal_zone - orig_zone = ENV['TZ'] - t = Time.utc(2013, 2, 24) assert_equal('UTC', t.zone) assert_equal('UTC', Marshal.load(Marshal.dump(t)).zone) - ENV['TZ'] = 'JST-9' - t = Time.local(2013, 2, 24) - assert_equal('JST', Time.local(2013, 2, 24).zone) - assert_equal('JST', Marshal.load(Marshal.dump(t)).zone) - ensure - ENV['TZ'] = orig_zone + in_timezone('JST-9') do + t = Time.local(2013, 2, 24) + assert_equal('JST', Time.local(2013, 2, 24).zone) + assert_equal('JST', Marshal.load(Marshal.dump(t)).zone) + end end def test_marshal_to_s @@ -312,15 +318,6 @@ class TestTime < Test::Unit::TestCase "[ruby-dev:44827] [Bug #5586]") end - def in_timezone(zone) - orig_zone = ENV['TZ'] - - ENV['TZ'] = zone - yield - ensure - ENV['TZ'] = orig_zone - end - Bug8795 = '[ruby-core:56648] [Bug #8795]' def test_marshal_broken_offset