aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/string_ext_test.rb
diff options
context:
space:
mode:
authorNate Mueller <nate@nearbuysystems.com>2011-06-02 20:43:23 -0700
committerNate Mueller <nate@nearbuysystems.com>2011-06-02 20:51:09 -0700
commitf449da53ac69495e736c7f1ce0f1bc6ebe356081 (patch)
tree616efc7f8b607d33fa69b59ccca17731d61d4ac1 /activesupport/test/core_ext/string_ext_test.rb
parentf064664de72a34d24568eadf7340f41876df4b20 (diff)
downloadrails-f449da53ac69495e736c7f1ce0f1bc6ebe356081.tar.gz
rails-f449da53ac69495e736c7f1ce0f1bc6ebe356081.tar.bz2
rails-f449da53ac69495e736c7f1ce0f1bc6ebe356081.zip
Make String.to_time respect timezones
Diffstat (limited to 'activesupport/test/core_ext/string_ext_test.rb')
-rw-r--r--activesupport/test/core_ext/string_ext_test.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/string_ext_test.rb b/activesupport/test/core_ext/string_ext_test.rb
index 32675c884a..0fd0cb8ac7 100644
--- a/activesupport/test/core_ext/string_ext_test.rb
+++ b/activesupport/test/core_ext/string_ext_test.rb
@@ -158,6 +158,7 @@ class StringInflectionsTest < Test::Unit::TestCase
assert_equal Time.local(2005, 2, 27, 23, 50, 19, 275038), "2005-02-27T23:50:19.275038".to_time(:local)
assert_equal DateTime.civil(2039, 2, 27, 23, 50), "2039-02-27 23:50".to_time
assert_equal Time.local_time(2039, 2, 27, 23, 50), "2039-02-27 23:50".to_time(:local)
+ assert_equal Time.utc(2039, 2, 27, 23, 50), "2039-02-27 22:50 -0100".to_time
assert_nil "".to_time
end