summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNARUSE, Yui <naruse@airemix.jp>2010-05-02 23:43:55 +0800
committerFlorian Frank <flori@ping.de>2010-05-03 20:57:45 +0800
commit9b781e65f8231ae0db33eeccda27abab385d98ce (patch)
tree5bc653560f798b691ab070b8255b1456c4faf50e
parentd496f792bf98dc49512d8f04f5867d26f6b8aed3 (diff)
downloadjson-9b781e65f8231ae0db33eeccda27abab385d98ce.tar.gz
Fix wrong assertion: use assert_equal.
From Ruby r27587 and r27590, by nobu.
-rwxr-xr-xtests/test_json_addition.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/test_json_addition.rb b/tests/test_json_addition.rb
index ec89c07..844cd4f 100755
--- a/tests/test_json_addition.rb
+++ b/tests/test_json_addition.rb
@@ -151,12 +151,12 @@ class TC_JSONAddition < Test::Unit::TestCase
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