From de1e4881d4c29e71086e9885c7f1a48452aa6780 Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 16 Jan 2012 07:42:01 +0000 Subject: * lib/optparse.rb (Regexp): fix incorrect options when casting to a Regexp, and suppress encoding option warnings. https://github.com/ruby/ruby/pull/82 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34316 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/optparse/test_optarg.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test/optparse/test_optarg.rb') diff --git a/test/optparse/test_optarg.rb b/test/optparse/test_optarg.rb index 2058e3719d..3114b80fc5 100644 --- a/test/optparse/test_optarg.rb +++ b/test/optparse/test_optarg.rb @@ -5,6 +5,8 @@ class TestOptionParser::OptArg < TestOptionParser super @opt.def_option("-x[VAL]") {|x| @flag = x} @opt.def_option("--option[=VAL]") {|x| @flag = x} + @opt.def_option("--regexp[=REGEXP]", Regexp) {|x| @reopt = x} + @reopt = nil end def test_short -- cgit v1.2.1