From 9b781e65f8231ae0db33eeccda27abab385d98ce Mon Sep 17 00:00:00 2001 From: "NARUSE, Yui" Date: Sun, 2 May 2010 23:43:55 +0800 Subject: [PATCH] Fix wrong assertion: use assert_equal. From Ruby r27587 and r27590, by nobu. --- tests/test_json_addition.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/test_json_addition.rb b/tests/test_json_addition.rb index ec89c07e..844cd4f7 100755 --- a/tests/test_json_addition.rb +++ b/tests/test_json_addition.rb @@ -151,12 +151,12 @@ def test_core def test_utc_datetime now = Time.now d = DateTime.parse(now.to_s) # usual case - assert d, JSON.parse(d.to_json) + assert_equal d, JSON.parse(d.to_json) d = DateTime.parse(now.utc.to_s) # of = 0 - assert d, JSON.parse(d.to_json) - d = DateTime.civil(2008, 6, 17, 11, 48, 32, 1) # of = 1 / 12 => 1/12 - assert d, JSON.parse(d.to_json) - d = DateTime.civil(2008, 6, 17, 11, 48, 32, 12) # of = 12 / 12 => 12 - assert d, JSON.parse(d.to_json) + assert_equal d, JSON.parse(d.to_json) + d = DateTime.civil(2008, 6, 17, 11, 48, 32, Rational(1,24)) + assert_equal d, JSON.parse(d.to_json) + d = DateTime.civil(2008, 6, 17, 11, 48, 32, Rational(12,24)) + assert_equal d, JSON.parse(d.to_json) end end