summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--lib/test/unit.rb3
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index abf228a8d3..420ebef68f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Dec 15 20:45:02 2010 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * lib/test/unit.rb (process_args): need to setup @help to print options.
+
Wed Dec 15 11:19:33 2010 NAKAMURA Usaku <usa@ruby-lang.org>
* test/zlib/test_zlib.rb (test_to_io): forgotten to fix with r30201.
diff --git a/lib/test/unit.rb b/lib/test/unit.rb
index 73ce1b82c3..97d0da5ca5 100644
--- a/lib/test/unit.rb
+++ b/lib/test/unit.rb
@@ -36,13 +36,16 @@ module Test
end
def process_args(args = [])
+ orig_args = args.dup
options = {}
OptionParser.new do |opts|
setup_options(opts, options)
opts.parse!(args)
+ orig_args -= args
end
args = @init_hook.call(args, options) if @init_hook
non_options(args, options)
+ @help = orig_args.map { |s| s =~ /[\s|&<>$()]/ ? s.inspect : s }.join " "
options
end