diff options
| author | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-05-11 15:05:43 +0000 |
|---|---|---|
| committer | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-05-11 15:05:43 +0000 |
| commit | 364d1f348170b43529694d23305116ccd505c511 (patch) | |
| tree | e179d53157f350794c81d2e282f52db24bd89641 /test/optparse/test_optparse.rb | |
| parent | 0c8adaa861067ff8e22d6329076889ab257bca04 (diff) | |
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
Diffstat (limited to 'test/optparse/test_optparse.rb')
| -rw-r--r-- | test/optparse/test_optparse.rb | 2 |
1 files changed, 2 insertions, 0 deletions
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 |
