aboutsummaryrefslogtreecommitdiffstats
path: root/test/optparse/test_placearg.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_placearg.rb
parent688d00d23b9280d75a75c129382408a057c7109d (diff)
downloadruby-de1e4881d4c29e71086e9885c7f1a48452aa6780.tar.gz
* 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_placearg.rb')
-rw-r--r--test/optparse/test_placearg.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/optparse/test_placearg.rb b/test/optparse/test_placearg.rb
index 1aec01efb4..0bbd1a007e 100644
--- a/test/optparse/test_placearg.rb
+++ b/test/optparse/test_placearg.rb
@@ -6,7 +6,10 @@ class TestOptionParser::PlaceArg < TestOptionParser
@opt.def_option("-x [VAL]") {|x| @flag = x}
@opt.def_option("--option [VAL]") {|x| @flag = x}
@opt.def_option("-T [level]", /^[0-4]$/, Integer) {|x| @topt = x}
+ @topt = nil
@opt.def_option("-n") {}
+ @opt.def_option("--regexp [REGEXP]", Regexp) {|x| @reopt = x}
+ @reopt = nil
end
def test_short