From 0114fde85a09b69ad424c9bb239836f4896b016d Mon Sep 17 00:00:00 2001 From: tadf Date: Sat, 24 Nov 2012 10:31:10 +0000 Subject: [PATCH] * test/ruby/test_rubyoptions.rb (test_usage, test_usage_long): reduced, renamed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37832 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ test/ruby/test_rubyoptions.rb | 9 +++------ 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index bdc7a67d98..7c31f35711 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat Nov 24 19:29:18 2012 Tadayoshi Funaba + + * test/ruby/test_rubyoptions.rb (test_usage, test_usage_long): + reduced, renamed. + Sat Nov 24 13:10:14 2012 Koichi Sasada * vm_trace.c (rb_tracepoint_attr_raised_exception): should not check diff --git a/test/ruby/test_rubyoptions.rb b/test/ruby/test_rubyoptions.rb index 7127cc41b8..eca6823597 100644 --- a/test/ruby/test_rubyoptions.rb +++ b/test/ruby/test_rubyoptions.rb @@ -30,16 +30,13 @@ class TestRubyOptions < Test::Unit::TestCase def test_usage assert_in_out_err(%w(-h)) do |r, e| assert_operator(r.size, :<=, 24) - assert_equal([], e) - end - end - - def test_usage2 - assert_in_out_err(%w(-h)) do |r, e| longer = r[1..-1].select {|x| x.size > 80} assert_equal([], longer) assert_equal([], e) end + end + + def test_usage_long assert_in_out_err(%w(--help)) do |r, e| longer = r[1..-1].select {|x| x.size > 80} assert_equal([], longer)