From 364d1f348170b43529694d23305116ccd505c511 Mon Sep 17 00:00:00 2001 From: yugui Date: Mon, 11 May 2009 15:05:43 +0000 Subject: merges r23286 from trunk into ruby_1_9_1. -- * lib/optparse.rb (OptionParser#parse_in_order): do not make an option from non-option argument. [ruby-dev:38333] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@23396 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/optparse/test_optparse.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test/optparse/test_optparse.rb') diff --git a/test/optparse/test_optparse.rb b/test/optparse/test_optparse.rb index 9c73399f5..6aa8fac75 100644 --- a/test/optparse/test_optparse.rb +++ b/test/optparse/test_optparse.rb @@ -8,6 +8,8 @@ class TestOptionParser < Test::Unit::TestCase end def no_error(*args) assert_nothing_raised(*args) {return yield} + ensure + $!.backtrace.delete_if {|e| /\A#{Regexp.quote(__FILE__)}:#{__LINE__-2}/o =~ e} if $! end def test_permute -- cgit