Flowdock
method

_wrap_assertion

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

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# 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
Register or log in to add new notes.