aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_time.rb
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-10-04 07:37:11 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-10-04 07:37:11 +0000
commit4eb497d90b0d439458e7f34046bbe41d38e4c06a (patch)
tree7fca0af86872c6cc1450a4137f25c7d8876b0978 /test/test_time.rb
parentbf8168cf334e45ce6e93fa5aedc74ab7ca4069f3 (diff)
downloadruby-4eb497d90b0d439458e7f34046bbe41d38e4c06a.tar.gz
* lib/time.rb (Time.strptime): use Time.at if d[:seconds] is set.
Reported by Christopher Eberz. [ruby-core:39903] Bug #5399 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33398 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/test_time.rb')
-rw-r--r--test/test_time.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_time.rb b/test/test_time.rb
index d3f3c22dff..9dbce3f654 100644
--- a/test/test_time.rb
+++ b/test/test_time.rb
@@ -392,6 +392,7 @@ class TestTimeExtension < Test::Unit::TestCase # :nodoc:
def test_strptime
assert_equal(Time.utc(2005, 8, 28, 06, 54, 20), Time.strptime("28/Aug/2005:06:54:20 +0000", "%d/%b/%Y:%T %z"))
+ assert_equal(Time.at(1).localtime, Time.strptime("1", "%s"))
end
def test_nsec