diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-04-26 06:13:11 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-04-26 06:13:11 +0000 |
| commit | 947a75c84059df32c42693f1d1f72b68617641a8 (patch) | |
| tree | e638c47d23cc114f975d34fc3300098d8aac1adf /test/optparse/test_optparse.rb | |
| parent | f8ed1be332f125897ed00ce7be770c512e600551 (diff) | |
| download | ruby-947a75c84059df32c42693f1d1f72b68617641a8.tar.gz ruby-947a75c84059df32c42693f1d1f72b68617641a8.tar.xz ruby-947a75c84059df32c42693f1d1f72b68617641a8.zip | |
* 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/trunk@23286 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 |
