summaryrefslogtreecommitdiff
path: root/test/runner.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-05 04:32:51 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-05 04:32:51 +0000
commit4198feb844a2fe307843d346bbde39894bd72faf (patch)
treed3717b9250e40d2ed5be15391f1e55f7c160e921 /test/runner.rb
parentbd895e909d5591bc771bb4f8bf3c0ec3934726df (diff)
* test/runner.rb: arguments should be keys.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4508 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/runner.rb')
-rw-r--r--test/runner.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/runner.rb b/test/runner.rb
index 969b56890b..8d1b9dc20c 100644
--- a/test/runner.rb
+++ b/test/runner.rb
@@ -36,7 +36,7 @@ runner = 'console'
ARGV.options do |opt|
opt.program_name = $0
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
end
opt.parse!