This project is closed and read-only.
Actions
Backport #1980
closedTest::Unit.run= behaves contrary to documentation
Backport #1980:
Test::Unit.run= behaves contrary to documentation
Status:
Closed
Assignee:
Description
=begin
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
=end
Actions