summaryrefslogtreecommitdiff
path: root/test/optparse/test_optarg.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-01-16 07:42:01 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-01-16 07:42:01 +0000
commitde1e4881d4c29e71086e9885c7f1a48452aa6780 (patch)
tree24a58cd5f1ca80df5129966ae11cff5d717d56ee /test/optparse/test_optarg.rb
parent688d00d23b9280d75a75c129382408a057c7109d (diff)
* 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
Diffstat (limited to 'test/optparse/test_optarg.rb')
-rw-r--r--test/optparse/test_optarg.rb2
1 files changed, 2 insertions, 0 deletions
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