summaryrefslogtreecommitdiff
path: root/test/psych
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-09-07 10:36:11 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-09-07 10:36:11 +0000
commit6b3feab965578e1cc06e8b64f55902d43da8bce6 (patch)
tree5567dbe99bbcb77dcb04144b7170ceb9987810fe /test/psych
parentf2bd0ce9933be0d7a9c94a5f1b41f85f75eff6a6 (diff)
Remove assertion which depends the load order
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33209 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/psych')
-rw-r--r--test/psych/helper.rb9
1 files changed, 1 insertions, 8 deletions
diff --git a/test/psych/helper.rb b/test/psych/helper.rb
index 61049d6cf2..fd23c3be07 100644
--- a/test/psych/helper.rb
+++ b/test/psych/helper.rb
@@ -2,6 +2,7 @@ require 'minitest/autorun'
require 'stringio'
require 'tempfile'
require 'date'
+require 'psych'
module Psych
class TestCase < MiniTest::Unit::TestCase
@@ -53,11 +54,3 @@ module Psych
end
end
end
-
-require 'psych'
-
-# FIXME: remove this when syck is removed
-o = Object.new
-a = o.method(:psych_to_yaml)
-b = o.method(:to_yaml)
-raise "psych should define to_yaml" unless a == b