1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/test/unit.rb: help messages.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30208 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2010-12-14 09:32:36 +00:00
parent 58f1c8fca8
commit 949e6d454e
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
Tue Dec 14 18:31:48 2010 NAKAMURA Usaku <usa@ruby-lang.org>
* lib/test/unit.rb: help messages.
Tue Dec 14 18:19:03 2010 NAKAMURA Usaku <usa@ruby-lang.org>
* common.mk (help): there is no reason to use the abbreviation for here.

View file

@ -79,7 +79,7 @@ module Test
def setup_options(parser, options)
super
parser.on '-x', '--exclude PATTERN' do |pattern|
parser.on '-x', '--exclude PATTERN', 'Exclude test files on pattern.' do |pattern|
(options[:reject] ||= []) << pattern
end
end
@ -117,7 +117,7 @@ module Test
def setup_options(parser, options)
super
parser.on '-Idirectory' do |dirs|
parser.on '-Idirectory', 'Add library load path' do |dirs|
dirs.split(':').each { |d| $LOAD_PATH.unshift d }
end
end
@ -126,7 +126,7 @@ module Test
module GCStressOption
def setup_options(parser, options)
super
parser.on '--[no-]gc-stress' do |flag|
parser.on '--[no-]gc-stress', 'Set GC.stress as true' do |flag|
options[:gc_stress] = flag
end
end