summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--lib/test/unit.rb12
2 files changed, 16 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 1b016e1cac..c4328e9ae0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun May 16 22:36:00 2004 Gavin Sinclair <gsinclair@soyabean.com.au>
+
+ * lib/text/unit.rb: Removed :nodoc: directive (it prevented effective
+ RDoc operation), and added file-level comment.
+
Sun May 16 20:55:49 2004 Tanaka Akira <akr@m17n.org>
* ext/dbm/dbm.c (fdbm_initialize): accept optional 3rd argument to
diff --git a/lib/test/unit.rb b/lib/test/unit.rb
index fbfb1e0008..3c0d265b2c 100644
--- a/lib/test/unit.rb
+++ b/lib/test/unit.rb
@@ -1,7 +1,17 @@
+#
+# = 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 # :nodoc:
+module Test
#
# = Test::Unit - Ruby Unit Testing Framework
#