summaryrefslogtreecommitdiff
path: root/lib/test/unit.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/test/unit.rb')
-rw-r--r--lib/test/unit.rb15
1 files changed, 4 insertions, 11 deletions
diff --git a/lib/test/unit.rb b/lib/test/unit.rb
index 3a1676a330..b71f644566 100644
--- a/lib/test/unit.rb
+++ b/lib/test/unit.rb
@@ -1,17 +1,7 @@
-#
-# = test/unit.rb
-#
-# Ruby's standard unit testing library/software.
-#
-# Copyright (c) 2000-2003, Nathaniel Talbott.
-#
-# See Test::Unit for documentation.
-#
-
require 'test/unit/testcase'
require 'test/unit/autorunner'
-module Test
+module Test # :nodoc:
#
# = Test::Unit - Ruby Unit Testing Framework
#
@@ -269,11 +259,14 @@ module Test
# practitioners about typos, grammatical errors, unclear statements,
# missing points, etc., in this document (or any other).
#
+
module Unit
+ # If set to false Test::Unit will not automatically run at exit.
def self.run=(flag)
@run = flag
end
+ # Automatically run tests at exit?
def self.run?
@run ||= false
end