* test/runner.rb: arguments should be keys.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4508 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
bd895e909d
commit
4198feb844
@ -1,3 +1,7 @@
|
|||||||
|
Fri Sep 5 13:32:48 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* test/runner.rb: arguments should be keys.
|
||||||
|
|
||||||
Fri Sep 5 12:09:55 2003 WATANABE Hirofumi <eban@ruby-lang.org>
|
Fri Sep 5 12:09:55 2003 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||||
|
|
||||||
* test/ruby/test_system.rb (test_system): check existence of ruby
|
* test/ruby/test_system.rb (test_system): check existence of ruby
|
||||||
|
@ -36,7 +36,7 @@ runner = 'console'
|
|||||||
ARGV.options do |opt|
|
ARGV.options do |opt|
|
||||||
opt.program_name = $0
|
opt.program_name = $0
|
||||||
opt.banner << " [tests...]"
|
opt.banner << " [tests...]"
|
||||||
opt.on("--runner=mode", runners_map, "UI mode (console, gtk,fox)") do |arg|
|
opt.on("--runner=mode", runners_map.keys, "UI mode (console, gtk,fox)") do |arg|
|
||||||
runner = arg
|
runner = arg
|
||||||
end
|
end
|
||||||
opt.parse!
|
opt.parse!
|
||||||
|
Loading…
x
Reference in New Issue
Block a user