method

_wrap_assertion

v1_8_7_330 - Show latest stable - Class: Test::Unit::Assertions
_wrap_assertion()
private

No documentation available.

# File lib/test/unit/assertions.rb, line 497
      def _wrap_assertion
        @_assertion_wrapped ||= false
        unless (@_assertion_wrapped)
          @_assertion_wrapped = true
          begin
            add_assertion
            return yield
          ensure
            @_assertion_wrapped = false
          end
        else
          return yield
        end
      end