Actions
Bug #4297
closedtest_time in ruby/test/psych/test_json_tree.rb makes test failure
Description
=begin
Recently ruby trunk + linux increase one test failure.
- Failure:
test_time(Psych::TestJSONTree) [/home/kosaki/linux/ruby-svn/ruby/test/psych/test_json_tree.rb:45]:
Expected "{"a": "2010-10-10 07:00:00.000000000Z"}\n", not "{"a": "2010-10-09 15:00:00.000000000Z"}\n".
Becuase the test are using Time.new and it depend on timezone.
def test_time
time = Time.new(2010, 10, 10).utc
assert_equal "{\"a\": \"2010-10-10 00:00:00.000000000Z\"}\n", Psych.to_json({'a' => time })
end
note: I'm living in japan timezones.
So, It shold be timezone independent.
% svn diff
Index: test/psych/test_json_tree.rb
--- test/psych/test_json_tree.rb (revision 30611)
+++ test/psych/test_json_tree.rb (working copy)
@@ -41,8 +41,8 @@
end
def test_time
-
time = Time.new(2010, 10, 10).utc
-
assert_equal "{\"a\": \"2010-10-10 07:00:00.000000000Z\"}\n", Psych.to_json({'a' => time })
-
time = Time.utc(2010, 10, 10).utc
-
assert_equal "{\"a\": \"2010-10-10 00:00:00.000000000Z\"}\n", Psych.to_json({'a' => time })
end
def test_datetime
=end
Actions
Like0
Like0Like0Like0