ruby--ruby/test/optparse/test_getopts.rb

12 lines
202 B
Ruby
Raw Normal View History

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