diff options
author | gsinclair <gsinclair@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-02-01 09:27:17 +0000 |
---|---|---|
committer | gsinclair <gsinclair@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-02-01 09:27:17 +0000 |
commit | 433e6e8130deb44add38cc6c24c1298d8243849e (patch) | |
tree | 073a126525f479b2bd5d1b0b10094478b9bfbc0d /lib/test/unit.rb | |
parent | 157b13855d79ea5fb4e7e16972516e085e090a6f (diff) | |
download | ruby-433e6e8130deb44add38cc6c24c1298d8243849e.tar.gz ruby-433e6e8130deb44add38cc6c24c1298d8243849e.tar.xz ruby-433e6e8130deb44add38cc6c24c1298d8243849e.zip |
From ruby_1_8 branch:
* lib/test/unit.rb: rearranged documentation for RDoc's sake.
* lib/matrix.rb: improved documentation.
* lib/net/http.rb: slight documentation formatting improvement.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5599 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/test/unit.rb')
-rw-r--r-- | lib/test/unit.rb | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/test/unit.rb b/lib/test/unit.rb index a78435913..abc375c37 100644 --- a/lib/test/unit.rb +++ b/lib/test/unit.rb @@ -1,6 +1,4 @@ -require 'test/unit/testcase' -require 'test/unit/autorunner' - +# # = Test::Unit - Ruby Unit Testing Framework # # == Introduction @@ -256,10 +254,13 @@ require 'test/unit/autorunner' # I'd really like to get feedback from all levels of Ruby # practitioners about typos, grammatical errors, unclear statements, # missing points, etc., in this document (or any other). +# +require 'test/unit/testcase' +require 'test/unit/autorunner' -module Test - # For documentation, see module Test +module Test # :nodoc: + # For documentation, see file test/unit.rb. module Unit def self.run=(flag) @run = flag |