aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
authordenisovlev <denisovlev@ya.ru>2016-10-20 15:44:22 +0300
committerdenisovlev <denisovlev@ya.ru>2016-10-21 13:19:08 +0300
commit07ffe7a6211b2bac59f385f4a0a67d11e4d42c24 (patch)
treeda000295e5dd71d11eebfea28a35581bf828362e /activesupport/test
parentf2c6db41ba56afb1529e4732c59622fc0cf9f3ba (diff)
downloadrails-07ffe7a6211b2bac59f385f4a0a67d11e4d42c24.tar.gz
rails-07ffe7a6211b2bac59f385f4a0a67d11e4d42c24.tar.bz2
rails-07ffe7a6211b2bac59f385f4a0a67d11e4d42c24.zip
Fix `ActiveSupport::TimeZone#strptime` cannot parse timestamps (%Q, %s)
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/time_zone_test.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/activesupport/test/time_zone_test.rb b/activesupport/test/time_zone_test.rb
index 76fee1fdd4..bd29584478 100644
--- a/activesupport/test/time_zone_test.rb
+++ b/activesupport/test/time_zone_test.rb
@@ -395,6 +395,24 @@ class TimeZoneTest < ActiveSupport::TestCase
end
end
+ def test_strptime_with_timestamp_seconds
+ with_env_tz "US/Eastern" do
+ zone = ActiveSupport::TimeZone["Eastern Time (US & Canada)"]
+ time_str = "1470272280"
+ time = zone.strptime(time_str, "%s")
+ assert_equal Time.at(1470272280), time
+ end
+ end
+
+ def test_strptime_with_timestamp_milliseconds
+ with_env_tz "US/Eastern" do
+ zone = ActiveSupport::TimeZone["Eastern Time (US & Canada)"]
+ time_str = "1470272280000"
+ time = zone.strptime(time_str, "%Q")
+ assert_equal Time.at(1470272280), time
+ end
+ end
+
def test_utc_offset_lazy_loaded_from_tzinfo_when_not_passed_in_to_initialize
tzinfo = TZInfo::Timezone.get("America/New_York")
zone = ActiveSupport::TimeZone.create(tzinfo.name, nil, tzinfo)