From fcbf63e62c627deae76c1b8cb8c0876c536ed811 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Mon, 16 Mar 2020 18:49:26 +0900 Subject: Fresh start --- jni/ruby/test/optparse/test_getopts.rb | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 jni/ruby/test/optparse/test_getopts.rb (limited to 'jni/ruby/test/optparse/test_getopts.rb') diff --git a/jni/ruby/test/optparse/test_getopts.rb b/jni/ruby/test/optparse/test_getopts.rb new file mode 100644 index 0000000..ae22f68 --- /dev/null +++ b/jni/ruby/test/optparse/test_getopts.rb @@ -0,0 +1,34 @@ +require 'test/unit' +require 'optparse' + +class TestOptionParser < Test::Unit::TestCase +end +class TestOptionParser::Getopts < Test::Unit::TestCase + def setup + @opt = OptionParser.new + end + + def test_short_noarg + o = @opt.getopts(%w[-a], "ab") + assert_equal(true, o['a']) + assert_equal(false, o['b']) + end + + def test_short_arg + o = @opt.getopts(%w[-a1], "a:b:") + assert_equal("1", o['a']) + assert_equal(nil, o['b']) + end + + def test_long_noarg + o = @opt.getopts(%w[--foo], "", "foo", "bar") + assert_equal(true, o['foo']) + assert_equal(false, o['bar']) + end + + def test_long_arg + o = @opt.getopts(%w[--bar ZOT], "", "foo:FOO", "bar:BAR") + assert_equal("FOO", o['foo']) + assert_equal("ZOT", o['bar']) + end +end -- cgit v1.2.3