ruby/test/optparse/test_getopts.rb
nobu 6b55a46114 * test/optparse/test_getopts.rb: added.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-09-26 14:59:20 +00:00

11 lines
202 B
Ruby

require 'test/unit'
class TestOptionParser < Test::Unit::TestCase
def setup
@opt = OptionParser.new
end
def test_getopts
assert_equal({'a' => true}, @opt.getopts(['-a'], "a"))
end
end