From: John Firebaugh Date: 2009-08-22T11:33:45+09:00 Subject: [ruby-core:25034] [Bug #1980] Test::Unit.run= behaves contrary to documentation Bug #1980: Test::Unit.run= behaves contrary to documentation http://redmine.ruby-lang.org/issues/show/1980 Author: John Firebaugh Status: Open, Priority: Normal ruby -v: ruby 1.8.7 (2009-06-12 patchlevel 174) [i686-darwin9] Documentation says "If set to false Test::Unit will not automatically run at exit." But in fact you must set it to true to get that behavior. require 'test/unit' class DebugTest < Test::Unit::TestCase def test_debug puts "hello world" end end Test::Unit.run = false ---------------------------------------- http://redmine.ruby-lang.org