From: Charles Nutter Date: 2012-02-23T04:35:45+09:00 Subject: [ruby-core:42810] [ruby-trunk - Bug #6062] test/yaml/test_yaml.rb tries to use Test::Unit::TestSuite to run Issue #6062 has been updated by Charles Nutter. Sorry, it looks like this file is old, probably from 1.9.1 timeframe. Got included in our local suite and never removed. Disregard. ---------------------------------------- Bug #6062: test/yaml/test_yaml.rb tries to use Test::Unit::TestSuite to run https://bugs.ruby-lang.org/issues/6062 Author: Charles Nutter Status: Open Priority: Normal Assignee: Category: Target version: ruby -v: trunk This block of code appears at the bottom of test/yaml/test_yaml.rb, for running the file directly. It prevents running the file directly, since Test::Unit::TestSuite no longer exists. Logic in minitest/testunit will run the test anyway without this block, so it should be removed. Please backport to 1.9.3 branch as well. if $0 == __FILE__ suite = Test::Unit::TestSuite.new('YAML') ObjectSpace.each_object(Class) do |klass| suite << klass.suite if (Test::Unit::TestCase > klass) end require 'test/unit/ui/console/testrunner' Test::Unit::UI::Console::TestRunner.run(suite).passed? end -- http://bugs.ruby-lang.org/