aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_rubyoptions.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/ruby/test_rubyoptions.rb b/test/ruby/test_rubyoptions.rb
index 5f43ce2da3..7127cc41b8 100644
--- a/test/ruby/test_rubyoptions.rb
+++ b/test/ruby/test_rubyoptions.rb
@@ -40,6 +40,11 @@ class TestRubyOptions < Test::Unit::TestCase
assert_equal([], longer)
assert_equal([], e)
end
+ assert_in_out_err(%w(--help)) do |r, e|
+ longer = r[1..-1].select {|x| x.size > 80}
+ assert_equal([], longer)
+ assert_equal([], e)
+ end
end
def test_option_variables