diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-09-05 04:32:51 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-09-05 04:32:51 +0000 |
| commit | 81e98170634bb472059adf761f72954f4c69fd0d (patch) | |
| tree | d3717b9250e40d2ed5be15391f1e55f7c160e921 | |
| parent | 38a77bf89d3964192b68434cb22f40c646f5cb7a (diff) | |
| download | ruby-81e98170634bb472059adf761f72954f4c69fd0d.tar.gz ruby-81e98170634bb472059adf761f72954f4c69fd0d.tar.xz ruby-81e98170634bb472059adf761f72954f4c69fd0d.zip | |
* test/runner.rb: arguments should be keys.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4508 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | test/runner.rb | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -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> * test/ruby/test_system.rb (test_system): check existence of ruby diff --git a/test/runner.rb b/test/runner.rb index 969b56890..8d1b9dc20 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! |
