aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/time_with_zone_test.rb
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2010-06-28 14:01:48 -0300
committerJosé Valim <jose.valim@gmail.com>2010-06-28 19:35:33 +0200
commitb2633f9f9323f5d5eca1c2c94bb7ae88ad276cda (patch)
tree4995b1f679178161d154f0b901f0f936e9737228 /activesupport/test/core_ext/time_with_zone_test.rb
parent97a92a4cfddf819357ca09b4a91a5937b044e4d8 (diff)
downloadrails-b2633f9f9323f5d5eca1c2c94bb7ae88ad276cda.tar.gz
rails-b2633f9f9323f5d5eca1c2c94bb7ae88ad276cda.tar.bz2
rails-b2633f9f9323f5d5eca1c2c94bb7ae88ad276cda.zip
Don't store incorrect values in zones_map
[#4942 state:committed] Signed-off-by: José Valim <jose.valim@gmail.com>
Diffstat (limited to 'activesupport/test/core_ext/time_with_zone_test.rb')
-rw-r--r--activesupport/test/core_ext/time_with_zone_test.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/activesupport/test/core_ext/time_with_zone_test.rb b/activesupport/test/core_ext/time_with_zone_test.rb
index cf11f4d28f..5ce4277672 100644
--- a/activesupport/test/core_ext/time_with_zone_test.rb
+++ b/activesupport/test/core_ext/time_with_zone_test.rb
@@ -832,9 +832,7 @@ class TimeWithZoneMethodsForTimeAndDateTimeTest < Test::Unit::TestCase
def test_time_zone_setter_with_invalid_zone
Time.zone = 'foo'
- assert_not_nil Time.zone
- assert_equal 'foo', Time.zone.name
- assert_raise(TZInfo::InvalidTimezoneIdentifier) { Time.zone.utc_offset }
+ assert_nil Time.zone
Time.zone = -15.hours
assert_nil Time.zone