summaryrefslogtreecommitdiff
path: root/test/psych
diff options
context:
space:
mode:
authortenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-03-29 04:30:30 +0000
committertenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-03-29 04:30:30 +0000
commit0a5d4d29e2404778d38410ba309443fa6e34ab03 (patch)
tree8c68b2788d2b41ef8575fa94d1098e12e79bad2f /test/psych
parent6c4a07dfa77fc9017adba958cf6399c1f1e6af33 (diff)
* test/psych/visitors/test_to_ruby.rb: switching to assert_in_delta
* test/psych/visitors/test_yaml_tree.rb: switching to assert_in_delta git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27084 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/psych')
-rw-r--r--test/psych/visitors/test_to_ruby.rb6
-rw-r--r--test/psych/visitors/test_yaml_tree.rb3
2 files changed, 5 insertions, 4 deletions
diff --git a/test/psych/visitors/test_to_ruby.rb b/test/psych/visitors/test_to_ruby.rb
index dc02fbc29d..87712f71ba 100644
--- a/test/psych/visitors/test_to_ruby.rb
+++ b/test/psych/visitors/test_to_ruby.rb
@@ -115,7 +115,7 @@ description:
formatted = now.strftime("%Y-%m-%d %H:%M:%S") +
".%06d %+.2d:00" % [now.usec, now.gmt_offset / 3600]
- assert_equal now, Nodes::Scalar.new(formatted).to_ruby
+ assert_in_delta now, Nodes::Scalar.new(formatted).to_ruby, 0.000001
end
def test_time_utc
@@ -123,7 +123,7 @@ description:
formatted = now.strftime("%Y-%m-%d %H:%M:%S") +
".%06dZ" % [now.usec]
- assert_equal now, Nodes::Scalar.new(formatted).to_ruby
+ assert_in_delta now, Nodes::Scalar.new(formatted).to_ruby, 0.000001
end
def test_time_utc_no_z
@@ -131,7 +131,7 @@ description:
formatted = now.strftime("%Y-%m-%d %H:%M:%S") +
".%06d" % [now.usec]
- assert_equal now, Nodes::Scalar.new(formatted).to_ruby
+ assert_in_delta now, Nodes::Scalar.new(formatted).to_ruby, 0.000001
end
def test_date
diff --git a/test/psych/visitors/test_yaml_tree.rb b/test/psych/visitors/test_yaml_tree.rb
index a0a2336e75..7dab85dc5b 100644
--- a/test/psych/visitors/test_yaml_tree.rb
+++ b/test/psych/visitors/test_yaml_tree.rb
@@ -45,7 +45,8 @@ module Psych
end
def test_time
- assert_cycle Time.now
+ t = Time.now
+ assert_in_delta t, Psych.load(Psych.dump(t)), 0.000001
end
def test_date